yuhsing

Untitled

Dec 25th, 2012
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1.  
  2. // Request # 3
  3. // VP ROOM the use of pvp_y_room
  4. // PVP ROOM # 1 - Guild Vs Guild "The room should have a chat room saying that." Use Prontera for this
  5. // PVP ROOM # 2 - Last Man Standing"The room should have a chat room saying that." Use guild_vs2 for this
  6. // PVP ROOM # 3 - Baby PVP - Make this ONLY Baby can enter."The room should have a chat room saying that." Use Izlude for this
  7. // Please use the flags as the NPC for each one
  8.  
  9. // GVG Room
  10. pvp_y_room,40,42,4 script PVP Room#1 722,{
  11. if( getcharid(2) ){
  12. if( select("Enter GVG","Cancel") == 1 )
  13. warp "pvp_y_1-1",0,0;
  14. }else{
  15. mes "You dont have a guild.";
  16. }
  17. close;
  18.  
  19. OnInit:
  20. waitingroom "Guild vs Guild",0;
  21. end;
  22. }
  23.  
  24. pvp_y_1-1 mapflag GVG
  25.  
  26.  
  27. pvp_y_room,44,42,4 script PVP Room#2 722,{
  28. if( select("Enter Last Man Standing","Cancel") == 1 ){
  29. warp "guild_vs2",0,0;
  30. }
  31. close;
  32.  
  33. OnInit:
  34. waitingroom "Last Man Standing",0;
  35. end;
  36. }
  37.  
  38. guild_vs2 mapflag PVP
  39.  
  40.  
  41. pvp_y_room,49,42,4 script PVP Room#3 722,{
  42. if( eaclass() & EAJL_BABY ){
  43. if( select("Enter Baby PVP","Cancel") == 1 )
  44. warp "pvp_y_1-2",0,0;
  45. }else{
  46. mes "You are not baby class";
  47. }
  48. close;
  49.  
  50. OnInit:
  51. waitingroom "Last Man Standing",0;
  52. end;
  53. }
  54.  
  55. pvp_y_1-2 mapflag PVP
Advertisement
Add Comment
Please, Sign In to add comment