Advertisement
Guest User

Remake

a guest
Oct 18th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. map,x,y,f script PvP Battle Room#01::pvparena 468,{
  2.  
  3. mes "[^ff0000PvP Battle Room^000000]";
  4. mes "Select Room";
  5. menu
  6. "^0000FFPvP(izlude)^000000 [" + getmapusers("pvp_y_8-2") + "]",pvp1,
  7. "^FF0000PvP(Battle Royale)^000000 [" + getmapusers("guild_vs3") + "]",gvg1,
  8. "^1B7800Spesial [Champ vs Champ]^000000 [" + getmapusers("guild_vs1") + "]",champ;
  9.  
  10.  
  11. pvp1:
  12. warp "pvp_y_8-2",0,0;
  13. announce ""+ strcharinfo(0) +" Has Entered The PVP Room (Izlude).",bc_all;
  14. close;
  15. gvg1:
  16. warp "guild_vs3",0,0;
  17. announce ""+ strcharinfo(0) +" Has Entered The GvG Zone (Battle Royale).",bc_all;
  18. close;
  19. champ:
  20. if (Class != 4016) goto nchamp;
  21. warp "guild_vs1",0,0;
  22. announce ""+ strcharinfo(0) +" Has Entered The PVP Room [Champ VS Champ].",bc_all;
  23. close;
  24.  
  25. nchamp:
  26. next;
  27. mes "[PvP Warper]";
  28. mes "You're not a Champion.";
  29. close;
  30.  
  31. OnInit:
  32. waitingroom "PvP Room",0;
  33. end;
  34. }
  35.  
  36.  
  37.  
  38. //Mapflag GvG
  39. guild_vs3 mapflag pvp
  40. guild_vs3 mapflag noreturn
  41. guild_vs3 mapflag nosave
  42.  
  43.  
  44.  
  45.  
  46. //Mapflag CvC
  47. guild_vs2 mapflag pvp
  48. guild_vs2 mapflag noreturn
  49. guild_vs2 mapflag nosave
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement