Aí galera eu consegui um script de aura aqui no mesmo xtibia e ele está configurado para que ela apareça nos players lvl 500+. (Para quem não sabe o que é um sistema de aura, é uns efeito que ficam "saindo" do player quando ele alcança um certo level.) Será que teria como ela só aparecer nos Vips Account? Se alguém souber como, ajuda aí please e REP +. Acho que isso irá ajudar muita gente =D Segue o script:
Informação: Ot 8.6 // VIP system by account
function sendEffect(cid)
if isCreature(cid) then
local pos = getCreaturePosition(cid)
local x = math.random(pos.x-1,pos.x+1)
local y = math.random(pos.y-1,pos.y+1)
doSendMagicEffect({x=x,y=y,z=pos.z}, 4)
doSendMagicEffect({x=x,y=y,z=pos.z}, 34)
addEvent(sendEffect,2000,cid)
end
end
function onLogin(cid)
if getPlayerLevel(cid) >= 500 then
sendEffect(cid)
end
registerCreatureEvent(cid, "AdvEffect")
return TRUE
end
function onAdvance(cid, skill, oldLevel, newLevel)
if skill == SKILL__LEVEL and newLevel == 500 then
sendEffect(cid)
end
return TRUE
end