Advertisement
Guest User

Untitled

a guest
Sep 2nd, 2014
312
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. // PVP Yoyo Mode Staff
  2. //============================================================
  3. prontera,150,150,4 script PVP Arena 559,{
  4. mes "Hi ^ff8000"+strcharinfo(0)+"^000000,";
  5. mes "Which arena do you want to go to?";
  6. switch( select( "PVP Normal [ "+getmapusers("pvp_m_1-1")+" ]",
  7. "Guild Vs Guild [ "+getmapusers("magpvp")+" ]" ) ){
  8. Case 1:
  9. warp "pvp_m_1-1",0,0;
  10. break;
  11. Case 2:
  12. if( getcharid(1) ){
  13. mes "Please leave your party.";
  14. }else{
  15. warp "Coliseum",0,0;
  16. }
  17. break;
  18. }
  19. close;
  20.  
  21.  
  22.  
  23. OnInit:
  24. waitingroom "PVP Warper",0;
  25. end;
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement