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

Teleports

Push "J"
type "Magic Forcefield"

place the teleporter where you want it

double-click or right click -> properties and type in the x,y,z that you want the teleporter to lead to.
 
Push "J"
type "Magic Forcefield"

place the teleporter where you want it

double-click or right click -> properties and type in the x,y,z that you want the teleporter to lead to.

lol.. He meant "talking tp"
There are lots of theese scritps :) Use search function
 
Oh damn. Nah, im no scripter so i can't help with that stuff.

Read the title right but didn't read the post. XD I assumed he was meaning the x,y,z thingy XD
 
go to data/global event.xml add this
LUA:
<globalevent name="tp" interval="1" event="script" value="tp.lua"/>
go to data/globalevent/script and creat new lua file name it tp
LUA:
function onThink(interval, lastExecution)
doSendAnimatedText({x=1090,y=654,z=7}, 'Hunt Area', math.random(01,255))
doSendAnimatedText({x=1090,y=653,z=7}, 'Bosses', math.random(01,255))
doSendAnimatedText({x=1090,y=652,z=7}, 'Training', math.random(01,255))
doSendAnimatedText({x=1078,y=652,z=7}, 'Depot', 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
 
LUA:
function onThink(interval, lastExecution)
local config = {
      message = "Teleport room",
      Eposition = {x= 87, y= 87, z= 7}
}
      doSendAnimatedText(config.Eposition, config.message, math.random(01,255))
      return TRUE
end

Edit..
@Up: You won :(
 
Back
Top