revivendo esse post - eu uso esse script e no meu serv fica assim =
local config = {
delay = 10000, --Intervalo de tempo entre o texto [VIP], em milésimos de segundo.
effect = 26, --Efeito.
color = 4, --Cor do texto.
}
function sendVipEffect(cid)
if isPlayer(cid) and getPlayerStorageValue(cid, 13500) > -1 then
doSendAnimatedText(getThingPos(cid), "[VIP]", config.color)
doSendMagicEffect(getThingPos(cid), config.effect)
addEvent(sendVipEffect, config.delay, cid)
end
end
function onLogin(cid)
sendVipEffect(cid)
return true
end