perwal
New Member
Hiho, i have small problems cuz i see only last word "KAMRMIA" dont see more write.
My script:
My script:
Code:
local config = {
["ENIGMA"] = {pos={x=445,y=508,z=7}, eff = CONST_ME_POFF},
["BRONIE"] = {pos={x=434,y=504,z=8}, eff = CONST_ME_POFF},
["2K LINA"] = {pos={x=438,y=508,z=8}, eff = CONST_ME_POFF},
["KARMIA"] = {pos={x=442,y=504,z=8}, eff = CONST_ME_POFF},
}
function onThink(cid, interval, lastExecution)
for k, v in pairs(config) do
doSendMagicEffect(v.pos, v.eff)
return doSendAnimatedText(v.pos, k, math.random(1, 255))
end
return true
end