Graal Forums  

Go Back   Graal Forums > Development Forums > NPC Scripting
FAQ Members List Calendar Today's Posts

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 08-03-2007, 07:40 PM
DustyPorViva DustyPorViva is offline
Will work for food. Maybe
DustyPorViva's Avatar
Join Date: Sep 2003
Location: Maryland, USA
Posts: 9,589
DustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond repute
Send a message via AIM to DustyPorViva Send a message via MSN to DustyPorViva
Array problems

I'm working with arrays and having a bit of problems:
PHP Code:
echo(this.itemdb.(@temp.list[i])); 
Echoes:
Quote:
Checking inventory...
{vs_icon-arrow.png,Weapons,6,0,Traditional arrows crafted for efficient archery}
{wbomb1.png,Weapons,6,0,An explosive fuse bomb}
{wboom0.png,Weapons,6,0,Deadly weapon, crafted to always return}
{wbowi1.png,Weapons,6,0,A simple wooden bow}
{wham1.png,Tools,6,0,Hammer capable of breaking small rocks}
But...
PHP Code:
echo(this.itemdb.(@temp.list[i])[0]); 
Echoes the same exact thing, not the subarray. Any idea what I'm doing wrong?
Reply With Quote
  #2  
Old 08-03-2007, 07:58 PM
xXziroXx xXziroXx is offline
Malorian
xXziroXx's Avatar
Join Date: May 2004
Posts: 5,289
xXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant future
You might want to tell us how the array's are set.
__________________
Follow my work on social media post-Graal:Updated august 2025.
Reply With Quote
  #3  
Old 08-03-2007, 08:07 PM
DustyPorViva DustyPorViva is offline
Will work for food. Maybe
DustyPorViva's Avatar
Join Date: Sep 2003
Location: Maryland, USA
Posts: 9,589
DustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond repute
Send a message via AIM to DustyPorViva Send a message via MSN to DustyPorViva
Nevermind, I fixed it. It's because of the way I had the variables in the .arc file.
I had:
PHP Code:
ItemName={imagefile,catagory,weight,size³,description}
Bow={wbowi1.png,Weapons,6,0,A simple wooden bow}
Bomb={wbomb1.png,Weapons,6,0,An explosive fuse bomb}
Arrow={vs_icon-arrow.png,Weapons,6,0,Traditional arrows crafted for efficient archery}
Boomerang={wboom0.png,Weapons,6,0,Deadly weapon crafted to always return}
Shovel={door.png,Tools,6,0,Simple shovel capable of digging small holes}
Hammer={wham1.png,Tools,6,0,Hammer capable of breaking small rocks
which needed to be:
PHP Code:
ItemName=imagefile,catagory,weight,size³,"description"
Bow=wbowi1.png,Weapons,6,0,"A simple wooden bow"
Bomb=wbomb1.png,Weapons,6,0,"An explosive fuse bomb"
Arrow=vs_icon-arrow.png,Weapons,6,0,"Traditional arrows crafted for efficient archery"
Boomerang=wboom0.png,Weapons,6,0,"Deadly weapon crafted to always return"
Shovel=door.png,Tools,6,0,"Simple shovel capable of digging small holes"
Hammer=wham1.png,Tools,6,0,"Hammer capable of breaking small rock"
Reply With Quote
  #4  
Old 08-03-2007, 10:43 PM
xXziroXx xXziroXx is offline
Malorian
xXziroXx's Avatar
Join Date: May 2004
Posts: 5,289
xXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant future
__________________
Follow my work on social media post-Graal:Updated august 2025.
Reply With Quote
  #5  
Old 08-04-2007, 07:28 AM
zokemon zokemon is offline
That one guy...
zokemon's Avatar
Join Date: Mar 2001
Location: Sonoma County, California
Posts: 2,925
zokemon is a jewel in the roughzokemon is a jewel in the rough
Send a message via ICQ to zokemon Send a message via AIM to zokemon Send a message via MSN to zokemon Send a message via Yahoo to zokemon
It's probably because it loaded as a string not an array and string[0] is the same as string (while string[1] would be NULL).
__________________
Do it with a DON!
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +2. The time now is 05:45 PM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
Copyright (C) 1998-2019 Toonslab All Rights Reserved.