• 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!

At x Hour delete the teleport from an specific SQM

Fyruz

★★★★★
Joined
Feb 7, 2009
Messages
556
Reaction score
19
Location
127.0.0.1
Hi everyone, I want to know if you can help me with a LUA script that is based in a X hour example, every day at 6PM the teleport will be removed from the tile.
thx
 
Hi everyone, I want to know if you can help me with a LUA script that is based in a X hour example, every day at 6PM the teleport will be removed from the tile.
thx

Lua:
local pos, itemid = {x = 100, y = 100, z = 7}, 1337
function onTimer()
	return doRemoveItem(getTileItemById(pos, itemid).uid, 1)
end

XML:
<globalevent name="teleportDelete" time="21:35" event="script" value="teleportDelete.lua"/>
 
Back
Top