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.
Copyright © 2024 BYOND Software.
All rights reserved.
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