• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

remove stone X time

Code:
function onUse(cid, item, fromPosition, itemEx, toPosition)
	local time
	local stone, stone_pos = [COLOR="red"]1355[/COLOR], [COLOR="red"]{ x = 100, y = 100, z = 7 }[/COLOR]
	time = 10 [COLOR="blue"]-- Seconds until stone is removed.[/COLOR]
	return addEvent(function() doRemoveItem(getTileItemById(stone_pos, stone).uid) end, time * 1000)
end
 
LUA:
function onUse(cid, item, fromPosition, itemEx, toPosition)
	local stone, stone_pos = 1355, { x = 100, y = 100, z = 7 }
	local time = 10 -- Seconds until stone is removed.
	return addEvent(function() doRemoveItem(getTileItemById(stone_pos, stone).uid) end, time * 1000)
end
 
Back
Top