proc
RemoveItem(I,N)
var/a
for(I in src)
if(a>=N)
return
else
a++
del(I)
ID:169472
![]() Jun 13 2005, 7:32 pm (Edited on Jun 13 2005, 7:38 pm)
|
|
I was trying to make a proc to remove any number of items from the users inventory when the proc is called. It doesn't work. Could someone help me out? I is the item path to re move and N is how many.
|