mob
verb
Drop()
var/item = (/obj/ in src)
var/dropit = input("do you want to drop the [item] ?") in list("yer,no")
if(dropit == "yer")
src << "you drop the [item]"
new/obj/[item](usr.loc)
Get(obj/i in view(0))
var/getit = input("pick up [i] ?") in list("yer","no")
if(getit == "yer")
new/obj/[i](usr)
i dont like the way the new way for the 'new' command
but anyways my get and drop system dont work and here are the errors
get and drop.dm:10::warning: operation has no effect here
get and drop.dm:10:usr :warning: unused label
get and drop.dm:10:loc :warning: unused label
get and drop.dm:14::warning: operation has no effect here
get and drop.dm:14:usr :warning: unused label
sorry about not being that clear but its late and my mind is giveing out on me.