obj
proc
equip()
Get()
set src in oview(1,usr)
set category = null
if(src.item == Equipment)
usr.contents2 +=new src.type
usr << "You picked up [src]."
del src
if(src.item == Inventory)
src.loc = usr
usr << "You picked up [src]."
verb
Drop()
set src in usr
src.Move(usr.loc)
usr << "You dropped [src]"
DblClick()
if(src in usr.contents)
src.equip()
if(src in oview(1,usr))
Get()
Problem description:
I have divided my items into 2 inventories
the drop verb works for the normal inventory but not for the equipment inventory.. because it isnt the normal usr contents it is a list.. my question is how do i drop an item out of the equipment inventory?