obj/item can be picked up, and the get verb would appear.
obj/household can not be picked up, and the get verb won't show up.
Here's what I have so far, but it isn't doing what I'd like it to do.
obj/verb/Get(obj/item/O in oview(1))
if(usr.contents.len <=14)
view() << "[usr] picks up an item."
del src
usr.contents += src
else
usr << "You already have the max. accessories."
return
Can anyone give me a hand? :P
-Camaro-