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

Can someone help me with a script?

add this in Actions/Actions.xml
XML:
<action actionid="enter number above 1000" event="script" value="directory of the lua"/>

Create an LUA file with
Lua:
function onUse(cid, item, fromPosition, itemEx, toPosition)
local pos = {x = 1000, y = 1000, z = 7} -- map co-ordinates, add the position you want them to land on --
doTeleportThing(cid, pos)
return true
end
 
Back
Top Bottom