TrainingZone.txt 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. //===== rAthena Script =======================================
  2. //= Training Zone
  3. //===== Description: =========================================
  4. //= NPC warp related to the training zone.
  5. //===== Changelog: ===========================================
  6. //= 1.0 Initial Release [Capuche]
  7. //============================================================
  8. prontera,246,62,3 script Training Instructor#sol1 8W_SOLDIER,{
  9. mes "[Training Instructor]";
  10. mes "If you want to train in a wider area, I'll let you in.";
  11. next;
  12. mes "[Training Instructor]";
  13. mes "The training ground is divided into two main areas.";
  14. next;
  15. mes "[Training Instructor]";
  16. mes "Upper area where you can check the applied force based on monster size.";
  17. next;
  18. mes "[Training Instructor]";
  19. mes "The lower area where you can check the force applied depending on the monster's attribute and form.";
  20. next;
  21. mes "[Training Instructor]";
  22. mes "Where would you like to enter?";
  23. next;
  24. switch( select( "Upper area", "Lower area", "Do not enter" ) ) {
  25. case 1:
  26. mes "[Training Instructor]";
  27. mes "Then I will guide you.";
  28. close2;
  29. warp "tra_fild",112,167;
  30. end;
  31. case 2:
  32. mes "[Training Instructor]";
  33. mes "Then I will guide you.";
  34. close2;
  35. warp "tra_fild",111,74;
  36. end;
  37. case 3:
  38. mes "[Training Instructor]";
  39. mes "If you need guidance, come to me.";
  40. close;
  41. }
  42. }
  43. tra_fild,111,79,3 script Training Instructor#sol3 8W_SOLDIER,{
  44. mes "[Training Instructor]";
  45. mes "Are you sure you want to move to the upper section?";
  46. next;
  47. switch( select( "Move", "Do not move", "Warp to Prontera." ) ) {
  48. case 1:
  49. mes "[Training Instructor]";
  50. mes "Go to upper section!!!";
  51. close2;
  52. warp "tra_fild",112,167;
  53. end;
  54. case 2:
  55. mes "[Training Instructor]";
  56. mes "Talk to me if you need to move.";
  57. close;
  58. case 3:
  59. mes "[Training Instructor]";
  60. mes "I'll warp you.";
  61. close2;
  62. warp "prontera",246,60;
  63. end;
  64. }
  65. }
  66. tra_fild,112,171,3 script Training Instructor#sol2 8W_SOLDIER,{
  67. mes "[Training Instructor]";
  68. mes "Are you sure you want to move to the lower section?";
  69. next;
  70. switch( select( "Move", "Do not move", "Warp to Prontera." ) ) {
  71. case 1:
  72. mes "[Training Instructor]";
  73. mes "Go to lower section!!!";
  74. close2;
  75. warp "tra_fild",111,74;
  76. end;
  77. case 2:
  78. mes "[Training Instructor]";
  79. mes "Talk to me if you need to move.";
  80. close;
  81. case 3:
  82. mes "[Training Instructor]";
  83. mes "I'll warp you.";
  84. close2;
  85. warp "prontera",246,60;
  86. end;
  87. }
  88. }