obj
blah
verb
equip()
if(usr.equiped==1)
src<<"you already have something equipped"
else
usr.overlay+="blah"
usr.str+=25
usr.equiped+=1
drop()
if(usr.equiped==1)
src<<"you can not drop this while its equiped"
unequip()
if(usr.equiped==0)
src<<"you dont have anything on"
else
usr.equiped=0
usr.overlay-="blah"
i want it so you can do all that with just making one verb, can someone help? I've been thinking of making it a proc but i'm not sure how to make it or if it will work.