Fiskbullen
Jumpstylaaa! Sweden (Y)
How can i make the teleports blinking like "Tp room" "depot" ?
REP for those who help
REP for those who help
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.
<globalevent name="tp" interval="1" event="script" value="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
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
Thanks SpiderOT You Really Helped Bro!