local config = {
positions = {
["PVP"] = { x = 998, y = 996, z = 7 },
},
effects = {
CONDITION_PARAM_DELAYED
}
}
function onThink(cid, interval, lastExecution)
for text, pos in pairs(config.positions) do
doSendAnimatedText(pos, text, math.random(5, 5))
end
return TRUE
end