viewing paste PvP Warper | 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
prontera,150,150,5  script  PvP-Warper  99,{
 
set .@room1$,""; //Insert map name into quotation marks & adjust to your desire
set .@room2$,""; //Insert map name into quotation marks & adjust to your desire
set .@room3$,""; //Insert map name into quotation marks & adjust to your desire
set .@name$,"[PvP Warper]"; //NPC Dialogue name
 
mes .@name$;
mes "Hello, I'm the PvP Warper I can warp you to one of the 3 PvP maps available.";
mes "Please select one of the warps for me to continue.";
switch(select("PvP Room 1:PvP Room 2:PvP Room 3")){
case 1:
    warp .@room1$,0,0;
    end;
case 2:
    if(Class >= 4000 && Class <= 4022){ //Allows any Trans Class, High Novice - Paladin
    warp .@room2$,0,0;
    end;
    }
close;
case 3:
    if(Class >= 4054 && Class <= 4087){ //Allows Rune Knight to Mechanic, no matter if they rebirthed before or not
    warp .@room3$,0,0;
    end;
    }
close;
}
}
Viewed 2055 times, submitted by Streusel.