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

Action

in global events make new script name it tp
Code:
function onThink(interval, lastExecution)
doSendAnimatedText({x=1084,y=656,z=6}, 'GM Shop', math.random(01,255))
doSendAnimatedText({x=1084,y=646,z=5}, 'Donation', math.random(01,255))
doSendMagicEffect({x=1084,y=646,z=5}, CONST_ME_STUN)
return TRUE
end
and in global.xml
add this line
Code:
<globalevent name="tp" interval="1" event="script" value="tp.lua"/>
do send magic effect>>will send magic at the position
 
Back
Top