• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Algum br ai sabe ?

GODPaaulo

New Member
Joined
Jun 3, 2011
Messages
64
Reaction score
0
Tava prescisando de um script que quando acabace a vip da account, a promotion vip do player voltasse pra normal.
Ex: Ele tava com a Promotion Epic Kinght, a vip dele acabou voltasse pra Elite Knight.
Peço aqui, por que posto em supporte la em ingles tudo certin, so que 1 dia o topico ja ta na pagina 5, quando nao é deletado --'.
Espero me ajudar, se alguem ja tiver.
Flws
 
acho q eh isso

creaturescripts/creaturescripts.xml
LUA:
    <event type="login" name="vocationVip" event="script" value="script.lua"/>

creaturescripts/scripts/script.lua
LUA:
c = {
    [9] = 5,
    [10] = 6,
    [11] = 7,
    [12] = 8
}
function onLogin(cid)
    if getPlayerVocation(cid) >= 9 and not isVip(cid) then
       doPlayerSetVocation(cid, c[getPlayerVocation(cid)])
    end
    return true
end
 
Last edited:
Back
Top