local item = 2160
function onLogin(cid)
local function remItem(cid)
doRemoveItem(item, 1)
return true
end
addEvent(remItem, 3000, cid)
end
return true
end
local item = getThingFromPos(position)
doRemoveItem(item.uid, 1) --this works, remove the item
addEvent(doRemoveItem, 3000, item.uid, 1)-- this doesn't work, it shows the error in console
function remove()
local item = getThingFromPos(position)
doRemoveItem(item.uid, 1) --this works, remove the item
return true
end
addEvent(remove, 3000)-- this doesn't work, it shows the error in console