core,141,124,5 script PvP Warper::PvP Warper 4_M_FAIRYSOLDIER,{
mes ""+.n$;
mes "Welcome To PvP Warper";
next;
switch (select("^6ED1E1Trans Martial Arts^000000 - ^FF0000["+getmapusers("dbz_tour")+"]^000000 Players.",
"^FF33CC3rd Job Arena^000000 - ^FF0000["+getmapusers("cell_game")+"]^000000 Players.",
"^BAB9B9Coliseum Guild Arena^000000 - ^FF0000["+getmapusers("coliseum")+"]^000000 Players.",
"^FF7F00PvP Champion^000000 - ^FF0000["+getmapusers("1@ge_st")+"]^000000 Players.",
"Cancel")) {
case 1:
if (Class >= 4008 && Class <= 4022) { // Allows any Trans Class, Lord Knight - Paladin
announce "[ "+ strcharinfo(0) +" ] has joined Trans Martial Arts",0,0x6ED1E1; //announce and end
switch( rand(1,6) ){
case 1:
warp "dbz_tour", 85, 118;
end;
case 2:
warp "dbz_tour", 109, 118;
end;
case 3:
warp "dbz_tour", 108, 93;
end;
case 4:
warp "dbz_tour", 86, 92;
end;
case 5:
warp "dbz_tour", 96, 106;
end;
case 6:
warp "dbz_tour", 98, 129;
end;
}
}
mes ""+.n$;
mes "I'm sorry, but only ^FF0000 Transcendent Job^000000 are allowed to join this PvP Room.";
close;
case 2:
if (Class >= 4054 && Class <= 4079) { // Allows any 3rd Class, Rune Knight, etc
announce "[ "+ strcharinfo(0) +" ] has joined 3rd Job Arena",0,0xFF33CC; //announce and end
warp "cell_game",0,0;
end;
}
mes ""+.n$;
mes "I'm sorry, but only ^FF0000 3rd Job^000000 are allowed to join this PvP Room.";
close;
case 3:
announce "[ "+ strcharinfo(0) +" ] has joined Coliseum Guild Arena",0,0xBAB9B9; //announce and end
switch( rand(1,6) ){
case 1:
warp "coliseum", 70, 103;
end;
case 2:
warp "coliseum", 86, 86;
end;
case 3:
warp "coliseum", 117, 96;
end;
case 4:
warp "coliseum", 105, 72;
end;
case 5:
warp "coliseum", 128, 77;
end;
case 6:
warp "coliseum", 69, 75;
end;
}
case 4:
for ( .@i = 0; .@i < getarraysize(.@item_list); .@i = .@i + 1 )
if (Class == .class[.@i]) {
announce "[ "+ strcharinfo(0) +" ] has entered Champion 1 On 1 Arena!!",0,0x00BFFF; //announce and end
warp "1@ge_st",0,0;
end;
}
mes ""+.n$;
mes "I'm sorry, but only "+jobname(.class[0])+" & "+jobname(.class[1])+" are allowed to join this PvP Room.";
close;
case 5:
mes ""+.n$;
mes "See you ~";
close;
}
OnInit:
set .n$,"[ ^0065DF"+strnpcinfo(1)+"^000000 ]"; // NPC Name
setarray .class[0],15,4016,4077; // Allowed Class
end;
}