viewing paste Warper VIP @govip | Athena

Posted on the | Last edited on
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
// NPC que teletransporta Jogadores VIP a Sala VIP
// Warper VIP
// v0.1
// Autor: Envolvents (Wellington Ferraz)
 
//-<TAB>script<TAB>Nome do NPC<TAB>-1,{
-   script  Warper VIP  -1,{
 
OnInit:
    
    // Variáveis Sets
    set $@GMLevel, 1;           // Nível que terão acesso aos comando @govip
    set $mapa$,"prontera";          // Mapa 
    set $x,150;             // Where X
    set $y,150;             // Where Y
    set .site$,"www.cronus-emulator.com";   // Site do seu Servidor
 
    bindatcmd "govip",strnpcinfo(3)+"::OnAtcommand";
    end;
 
OnAtcommand:
    if(getgmlevel() >= $@GMLevel) {
    //if(getgroupid() >= $@GMLevel) {
        warp $mapa$,$x,$y;
    end;
}
    dispbottom "Este comando só é válido para Jogadores VIP e você não é um!";
    dispbottom "Acesse nosso site e saiba como ser um Jogador VIP.";
    dispbottom .site$;
    end;
}
Viewed 1842 times, submitted by Envolvents.