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

[Request] Teleport text

Fippex

Mapper
Joined
Jan 28, 2009
Messages
497
Reaction score
3
Location
Sweden ofc ;)
I've been playing on some randoms ot, and on their "teleport rooms" they got a text over each teleport that coems upp dissepears and comes upp and dissepear with a random text for example "Hydras" over a teleport wich leads to a hyrda spawn, is it a script or any action script for it or is that something els?

I hope you understand me, im having a hangover and writes like a naab atm :p
 
I've been playing on some randoms ot, and on their "teleport rooms" they got a text over each teleport that coems upp dissepears and comes upp and dissepear with a random text for example "Hydras" over a teleport wich leads to a hyrda spawn, is it a script or any action script for it or is that something els?

I hope you understand me, im having a hangover and writes like a naab atm :p

Put this in globalevents ;)

Code:
local config = {
    positions = {
        ["Cities"] = { x = 1021, y = 1025, z = 7 },
	["Hard"] = { x = 1046, y = 933, z = 7 },
    }
}

function onThink(cid, interval, lastExecution)
    for text, pos in pairs(config.positions) do
        doSendAnimatedText(pos, text, math.random(1, 255))
    end
    
    return TRUE
end

Edit cordinates by yourself.
 
Back
Top