Advertisement
Guest User

Untitled

a guest
Jul 12th, 2018
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. // PVP Yoyo Mode Staff
  2. //============================================================
  3. prontera,150,150,4 script Player vs Player 871,{
  4. set #PvpCount,#PvpCount+1;
  5. sc_end SC_GOSPEL;
  6. sc_end SC_SKE;
  7. sc_end SC_ASSUMPTIO;
  8. //sc_end SC_APPLEIDUN;
  9. //sc_end SC_SERVICEFORYOU;
  10. //sc_end SC_WEAPONPERFECT;
  11. //sc_end SC_OVERTHRUST;
  12. mes "Hi ^ff8000"+strcharinfo(0)+"^000000,";
  13. mes "[PvP Warper]";
  14. mes "Which arena do you want to go to?";
  15. switch( select( "PVP Arena["+getmapusers("pvp_y_6-2")+"]",
  16. "PVP 1 vs 1 ["+getmapusers("cell_game")+"]") ){
  17.  
  18.  
  19. Case 1:
  20. warp "pvp_y_6-2",0,0;
  21. announce "[ Player ] "+strcharinfo(0)+" have Enter PVP "+#PvpCount+" times!",0;
  22. break;
  23. Case 2:
  24. if( getmapusers("cell_game") > 1 ){
  25. mes "Room Full";
  26. }else{
  27. announce "[ Player ] "+strcharinfo(0)+" have Enter PVP "+#PvpCount+" times!",0;
  28. warp "cell_game",0,0;
  29. }
  30. break;
  31.  
  32. }
  33. close;
  34.  
  35. OnInit:
  36.  
  37. while( 1 ){
  38.  
  39. delwaitingroom;
  40.  
  41. waitingroom "PVP : "+getmapusers("pvp_y_6-2")+" Users",0;
  42.  
  43. sleep 1000;
  44. }
  45.  
  46. end;
  47.  
  48. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement