Advertisement
Guest User

PvpRoom warper

a guest
Jul 4th, 2014
257
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. prontera,164,181,4 script PvP Warper::pvpw 411,{
  2. cutin "aca_ninja_h",2;
  3. mes "[ ^0065DFPVP Warper^000000 ]";
  4. mes "Which Arena would you like to go?";
  5. menu "MvP Card allowed ["+ getmapusers("pvp_y_1-2")+"] ",pvproom1,"No MvP Card ["+ getmapusers("pvp_y_2-2")+"]",pvproom2,"Classic PvP ["+ getmapusers("pvp_n_1-5")+"]",pvproom3,"Nothing",no1;
  6. no1:
  7. cutin "",255;
  8. close;
  9.  
  10. pvproom1:
  11. announce "The user [" +strcharinfo(0) +"] Has Entered the PvP Room 1.",bc_blue|bc_all;
  12. warp "pvp_y_1-2",0,0;
  13. end;
  14. pvproom2:
  15. announce "The user [" +strcharinfo(0) +"] Has Entered the PvP Room 2.",bc_blue|bc_all;
  16. warp "pvp_y_2-2",0,0;
  17. end;
  18. pvproom3:
  19. announce "The user [" +strcharinfo(0) +"] Has Entered the PvP Room 3.",bc_blue|bc_all;
  20. warp "pvp_n_1-5",0,0;
  21. end;
  22.  
  23. OnInit:
  24.  
  25.  
  26. while(1) {
  27. delwaitingroom;
  28. waitingroom " [ "+ getmapusers("pvp_y_1-2")+" ] [ "+ getmapusers("pvp_y_2-2")+" ] [ "+ getmapusers("pvp_n_1-5")+" ]",0;
  29. sleep 500;
  30. }
  31. end;
  32.  
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement