pvp.txt 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. //===== rAthena Script =======================================
  2. //= PvP NPCs
  3. //===== By: ==================================================
  4. //= Euphy
  5. //===== Current Version: =====================================
  6. //= 1.0
  7. //===== Compatible With: =====================================
  8. //= rAthena Project
  9. //===== Description: =========================================
  10. //= PvP NPCs that are found in the Inns in major cities.
  11. //= Includes Yoyo Mode, Nightmare Mode, and Event Mode.
  12. //===== Additional Comments: =================================
  13. //= 1.0 First version, Renewal.
  14. //============================================================
  15. // PVP Warpers
  16. //============================================================
  17. pvp_y_room,30,85,4 script Fight Square Reception#1 105,{ //5,5
  18. callfunc "F_PVP_FSRS",50,69;
  19. end;
  20. OnInit:
  21. waitingroom "LV 50 ~ LV 69",0;
  22. end;
  23. }
  24. pvp_y_room,38,85,4 script Fight Square Reception#2 105,{ //5,5
  25. callfunc "F_PVP_FSRS",70,89;
  26. end;
  27. OnInit:
  28. waitingroom "LV 70 ~ LV 89",0;
  29. end;
  30. }
  31. pvp_y_room,46,85,4 script Fight Square Reception#3 105,{ //5,5
  32. callfunc "F_PVP_FSRS",90,99;
  33. end;
  34. OnInit:
  35. waitingroom "LV 90 ~ LV 99",0;
  36. end;
  37. }
  38. pvp_y_room,54,85,4 script Fight Square Reception#8 105,{
  39. callfunc "F_PVP_FSRS";
  40. end;
  41. OnInit:
  42. waitingroom "Free for all",0;
  43. end;
  44. }
  45. pvp_y_room,62,85,4 script Fight Square Reception#4 105,{
  46. //if (ADVJOB > 0) {
  47. if (Upper == 1) {
  48. mes "[PVP Fight Square Reception Staff]";
  49. mes "You have been transcended.";
  50. mes "You are not allowed to enter.";
  51. close;
  52. }
  53. callfunc "F_PVP_FSRS";
  54. end;
  55. OnInit:
  56. waitingroom "Normal Jobs Only",0;
  57. end;
  58. }
  59. pvp_y_room,70,85,4 script Fight Square Reception#5 105,{
  60. //if (ADVJOB == 0) {
  61. if (Upper != 1) {
  62. mes "[PVP Fight Square Reception Staff]";
  63. mes "You have not transcended.";
  64. mes "You are not allowed to enter.";
  65. close;
  66. }
  67. callfunc "F_PVP_FSRS";
  68. end;
  69. OnInit:
  70. waitingroom "Trans Jobs Only",0;
  71. end;
  72. }
  73. pvp_n_room,86,85,4 script Fight Square Reception#n 105,{
  74. callfunc "F_PVP_FSRS";
  75. end;
  76. OnInit:
  77. waitingroom "Free for all",0;
  78. end;
  79. }