Advertisement
Guest User

Untitled

a guest
Nov 25th, 2014
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.30 KB | None | 0 0
  1. prontera,159,182,4 script PVP Arena 673,{
  2. sc_end SC_GOSPEL;
  3. sc_end SC_SKE;
  4. sc_end SC_APPLEIDUN;
  5. sc_end SC_SERVICEFORYOU;
  6. sc_end SC_WEAPONPERFECT;
  7. sc_end SC_OVERTHRUST;
  8. mes "Hi ^ff8000"+strcharinfo(0)+"^000000,";
  9. mes "Are You Ready To Fight?";
  10. mes "Choose Ur Map.";
  11. switch( select( "PVP No Party ["+getmapusers("guild_vs3")+"]",
  12. "PVP Normal ["+getmapusers("Party_PvP")+"]",
  13. "PVP 1 vs 1 ["+getmapusers("1vs1_PvP")+"]" ) ){
  14. Case 1:
  15. warp "guild_vs3",0,0;
  16. break;
  17. Case 2:
  18. warp "Party_PvP",0,0;
  19. break;
  20. Case 3:
  21. if( getmapusers("1vs1_PvP") > 1 ){
  22. mes "Room Full";
  23. }else{
  24. warp "1vs1_PvP",40,34;
  25. }
  26. break;
  27. }
  28. close;
  29.  
  30. OnPCKillEvent:
  31. set .@map$,strcharinfo(3);
  32. if (.@m$ == "Party_PvP" || .@m$ == "guild_vs3" || .@m$ == "1vs1_PvP" ){
  33. set #CASHPOINTS,#CASHPOINTS + 2;
  34. set #KAFRAPOINTS,#KAFRAPOINTS + 2;
  35. dispbottom "+2 Points , Total Accumulated Cash : [ "+#CASHPOINTS+" ] ";
  36. end;
  37. }
  38. end;
  39.  
  40. OnPCDieEvent:
  41. set .@map$,strcharinfo(3);
  42. if (.@m$ == "Party_PvP" || .@m$ == "guild_vs3" || .@m$ == "1vs1_PvP" ){
  43. set #CASHPOINTS,#CASHPOINTS - 1;
  44. set #KAFRAPOINTS,#KAFRAPOINTS - 1;
  45. dispbottom "-1 Points , Total Accumulated Cash : [ "+#CASHPOINTS+" ] ";
  46. makeitem 7420,1,.@m$,.@x,.@y;
  47.  
  48. }
  49. end;
  50.  
  51. OnInit:
  52. waitingroom "PVP Warper",0;
  53. end;
  54. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement