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

text over Portals

Tyhawk master

New Member
Joined
Jan 10, 2015
Messages
149
Reaction score
4
hey guys im getting back into making a new OT. im gonna be making a ultimate war server. But i need (want) the script were the floating text apears over the portals or other places on the map. if u have it please can u tell me were i put the code. thanks
[8.60] The Forgotten Server 0.3.6 (Crying Damson) V8
 
https://otland.net/threads/animate-text-for-tiles-and-teleports.89520/

I also found this (globalevent):
Code:
local texts = {
    ["Depot "] = {{x=1000, y=1000, z=7}, CONST_ME_MAGIC_BLUE, TEXTCOLOR_PURPLE}
}

function onThink(interval, lastExecution)

    for text, param in pairs(texts) do
        doSendAnimatedText(param[1], text, param[3])
        doSendMagicEffect(param[1], param[2])
    end
    return true
end
 
Back
Top