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

Colour write on tp

perwal

New Member
Joined
Jul 14, 2011
Messages
65
Reaction score
1
Location
Poland Torun
Hiho, i have small problems cuz i see only last word "KAMRMIA" dont see more write.

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
 
LUA:
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) 
    doSendAnimatedText(v.pos, k, math.random(1, 255)) 
end 
return true 
end
 
Back
Top