ID:149715
Mar 2 2002, 11:13 am
|
|
I have a verb that creates a new obj in the users contents and then it is supposed to del two other objs. Unfortunately I don't know how to do this... could somebody point in the direction of a helpful tutorial, or maybe give me some pointers?
|
In response to English
|
|
actually I think that helps enough. thanks.
|
Get()
new /obj/thing(usr)
for(var/obj/O in view(1))
if(istype(O,/itemholder))
del(O)
If it's in a list then just find it in the list and delete it. We'd really need more info to be more specific.