I have this script in globalevents:
And it's doesnt work...
I have TFS 8.6 CryingDamson 0.3.6
Please help...
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...