Thread: Array problems
View Single Post
  #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