ID:149715
 
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?
I really depends on where those objects are and how you can find them (using code). If they are on the ground then use view() to find the object like this:

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.
In response to English
actually I think that helps enough. thanks.