• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Help me to make a TEXT on a tp

robin9291

New Member
Joined
Oct 13, 2012
Messages
47
Reaction score
1
I need help to get a text On my teleport, te.x a text it says "Hunting" and it is teleport under it REP++
 
LUA:
local config = {
positions = {
    ["PVP"] = { x = 998, y = 996, z = 7 },
},

effects = {
CONDITION_PARAM_DELAYED
}
}

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

XML:
<globalevent name="effectile" interval="3000" script="effectile.lua"/>
 
Back
Top