function onThink(cid, interval, lastExecution)
local positions = {
["Nom"] = { x = 1000, y = 1000, z = 7 }, -- text, position
["Cos tam"] = { x = 999, y = 1000, z = 7 }
}
local effect = 14
for text, pos in pairs(positions) do
doSendMagicEffect(pos,effect)
doSendAnimatedText(pos,text,math.random(1,255))
end
return true
end