ID:180819
 
I have read the guide, but I still have a question.

In this example:

(there should be an "obj" here, I assume"
food
bread
fruit
apple
orange

were do I put the different objs variables?

I am planning on making a mmorpg with a very, very large amount of weapons and such.

organized something like this:

equipment
weapons
swords
shortsword
longsword
axes
handaxe
battleaxe
shields
copper shield
wooden shield
etc etc

I could use help on where to place the var's on these too.
equipment
weapons
swords
shortsword
longsword
axes
handaxe
battleaxe
shields
copper shield
wooden shield
etc etc

I could use help on where to place the var's on these too.

Something like this would probably work.

obj/equipment
weapon
var/damage
var/weight

sword
var/length

broadsword
damage = 5
weight = 2
length = 3

shield
var/defense

copper_shield
defense = 2

lead_shield
defense = 3
In response to Guy T.
Also, you might want to look at this section of the guide:

Properties: making objects unique
In response to Guy T.
thanks
In response to Deadron
I've read that, the problem was the indention when you have multiple levels in you "tree". But I think I got the solution from Guy T.

Thanks anyway!