prontera,100,200,4 script PvP Warper 46,{
mes .Npc_Name$;
mes "Hello!";
switch(select("Free PvP:Party PvP: 1v1 PvP")) {
next;
mes .Npc_Name$;
case 1:
mes "Goodluck!";
warp .Map$[0],0,0;
close; break;
case 2:
if(!strcharinfo(1)) {
mes "You must have a party in order to enter!";
close;
}
mes "Goodluck!";
warp .Map$[1],0,0;
close; break;
case 3:
if(getmapusers(.Map$[2]) > 1) {
mes "There are people fighting in this map!";
close;
}
mes "Goodluck!";
warp .Map$[2],0,0;
close; break;
}
end;
OnInit:
.Npc_Name$ = "[^0000FF "+strnpcinfo(1)+" ^000000]";
setarray .Map$[0],"your_map1","your_map2","your_map3";
end;
}