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

Effect Tiles (Longer texts)

OZiRY

ONLiNE
Joined
Mar 11, 2010
Messages
281
Reaction score
5
Is it possible to make the effectile.lua show longer texts?

Current script:
Code:
local config = {
positions = {
    ["TP&Quests"] = { x = 1002, y = 993, z = 7 },
    ["Trainers"] = { x = 1001, y = 993, z = 7 },
    ["Temple"] = { x = 1035, y = 998, z = 7 },
    ["Temple"] = { x = 1745, y = 1988, z = 6 },
    ["Temple"] = { x = 2094, y = 2415, z = 5 },
    ["Temple"] = { x = 1745, y = 1988, z = 6 },
    ["Shops"] = { x = 997, y = 993, z = 7 },
    ["Temple"] = { x = 1745, y = 1988, z = 6 },
    ["Temple"] = { x = 1035, y = 998, z = 7 },
    ["Events"] = { x = 1000, y = 993, z = 7 },
	["Temple"] = { x = 1058, y = 997, z = 8 },
	["Casino"] = { x = 969, y = 1284, z = 6 },
	["CTF"] = { x = 975, y = 1283, z = 6 },
	["ZOMBIES!"] = { x = 972, y = 1293, z = 6 },
},

effects = {
CONDITION_PARAM_DELAYED
}
}

function onThink(cid, interval, lastExecution)
    for text, pos in pairs(config.positions) do
	doSendMagicEffect(pos, math.random(12,14)) 
        doSendAnimatedText(pos, text, math.random(133, 134))
    end
    return TRUE
end
 
Back
Top