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

Lua Text on tp.

Varev

New Member
Joined
Mar 23, 2015
Messages
29
Reaction score
0
I have this script in globalevents:

Code:
local t = {
    {"TEKST", {x=1022, y=1042, z=7}, CONST_ME_GIFT_WRAPS, color = TEXTCOLOR_LIGHTGREEN},
    {"TEKST", {x=1015, y=1025, z=7}, CONST_ME_TELEPORT, color = TEXTCOLOR_ORANGE}
}

function onThink(interval)
    for i = 1, #t do
        local v = t[i]
        doSendAnimatedText(v[2], v[1], v.color)
        doSendMagicEffect(v[2], v[3])
    end
    return true
end

And it's doesnt work...
I have TFS 8.6 CryingDamson 0.3.6
Please help...
 
it's
Code:
<globalevent name="napis" interval="2500" script="napis.lua"/>
and it's not working?
Can you post how your script looks at the moment?
Check console for errors too and post.

and/or send me TeamViewer info.
I'm home in 30 min.

-- Edit

Home now
 
Last edited by a moderator:
Back
Top