if(statpanel("Status"))
stat("Health:",health)
stat("Arms?",armsme)
stat("Legs?",legsme)
stat("Bleeding Rate:",bleed)
statpanel("Inventory",contents)
mob/verb/PickUp(obj/O in view(1))
set name = "Pick Up"
if(O.use)
O.loc = src.contents
obj
DblClick()
if(use)
loc = src.contents
Problem description: This is some code I have for a very basic inventory system. The whole clickin gto pick up works, but the inventory never updates, or mabye I coded it wrong.