guides_izl.txt 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. //===== eAthena Script =======================================
  2. //= Izlude Guides
  3. //===== By: ==================================================
  4. //= kobra_k88
  5. //===== Current Version: =====================================
  6. //= 1.0
  7. //===== Compatible With: =====================================
  8. //= eAthena 7.15 +
  9. //===== Description: =========================================
  10. //=
  11. //===== Additional Comments: =================================
  12. //= Fully working
  13. //============================================================
  14. // South ----------------------------------------
  15. izlude.gat,123,87,6 script Guide 105,{
  16. cutin "prt_soldier",2;
  17. mes "[Izlude Soldier]";
  18. mes "Welcome to Izlude, the satelite city of Prontera and home to the Swordsman Association!.";
  19. next;
  20. mes "[Izlude Soldier]";
  21. mes "We are here to help you find your way. Please feel free to speak to us anytime you need help.";
  22. M_Menu:
  23. next;
  24. menu "View Buildings",M_1, "Notice",M_2, "Cancel",M_End;
  25. M_1:
  26. mes "[Izlude Soldier]";
  27. mes "Do you want me to leave indications on the Mini-Map?";
  28. next;
  29. menu "No Thanks",sM_1a,"Yes Please",sM_1b;
  30. sM_1a:
  31. set @COMPASS_CHECK,0;
  32. goto L_Cont;
  33. sM_1b:
  34. set @COMPASS_CHECK,1;
  35. L_Cont:
  36. mes "[Izlude Soldier]";
  37. mes "Please choose a building to view.";
  38. next;
  39. sM_Menu:
  40. menu "^FF0000Swordsman Association^000000",M_1_1, "Swordsman Hall",M_1_2, "The Arena",M_1_3,
  41. "Izlude Marina",M_1_4, "Armory",M_1_5, "Item Shop",M_1_6, "Wipe all Indications on Mini-Map",M_1_7, "Cancel",M_End;
  42. M_1_1:
  43. mes "[Izlude Soldier]";
  44. mes "Do you want to be a Swordsman? Then head over to the Swordsman Association in the Western part of town.";
  45. viewpoint 1,52,140,1,0xFF0000;
  46. goto sL_Wipe;
  47. M_1_2:
  48. mes "[Izlude Soldier]";
  49. mes "Swordman Hall, the official Training Center of the Swordsman Assosiation, is located in the Eastern part of town.";
  50. viewpoint 1,214,130,2,0x00FF00;
  51. goto sL_Wipe;
  52. M_1_3:
  53. mes "[Izlude Soldier]";
  54. mes "The 'Arena' is a popular place for young warriors to train. Just head north and you'll find it.";
  55. mes "You can have fun there, you know.";
  56. viewpoint 1,128,225,3,0x00FF00;
  57. goto sL_Wipe;
  58. M_1_4:
  59. mes "[Izlude Soldier]";
  60. mes "The beautifull Marina is where you should go if you would like to take a ship to 'Alberta' or 'Byalan Island'. It is in the Northeastern part of town.";
  61. viewpoint 1,200,180,4,0xFF0000;
  62. goto sL_Wipe;
  63. M_1_5:
  64. mes "[Izlude Soldier]";
  65. mes "The Armory is located NorthWest of the Center Food Court.";
  66. viewpoint 1,111,149,5,0xFF00FF;
  67. goto sL_Wipe;
  68. M_1_6:
  69. mes "[Izlude Soldier]";
  70. mes "The Item Shop is located NorthEast of the Center Food Court.";
  71. viewpoint 1,148,148,6,0xFF00FF;
  72. goto sL_Wipe;
  73. M_1_7:
  74. set @COMPASS_CHECK, 2;
  75. sL_Wipe:
  76. if(@COMPASS_CHECK != 2) next;
  77. if(@COMPASS_CHECK == 1) goto sM_Menu;
  78. viewpoint 2,52,140,1,0xFF0000;
  79. viewpoint 2,214,130,2,0x00FF00;
  80. viewpoint 2,128,225,3,0x00FF00;
  81. viewpoint 2,200,180,4,0xFF0000;
  82. viewpoint 2,111,149,5,0xFF00FF;
  83. viewpoint 2,148,148,6,0xFF00FF;
  84. if(@COMPASS_CHECK == 0) goto sM_Menu;
  85. mes "[Izlude Soldier]";
  86. mes "All indications have been removed";
  87. cutin "prt_soldier",255;
  88. close;
  89. M_2:
  90. mes "[Izlude Soldier]";
  91. mes "We upgraded the Location Guide to the Newest Digital Style. We hope you like this gorgeous new system.";
  92. next;
  93. mes "[Izlude Soldier]";
  94. mes "Don't forget to refer to the Mini-Map on the Upper-Right corner of your screen.";
  95. next;
  96. mes "[Izlude Soldier]";
  97. mes "If you can't see the Mini-Map, just hit ^0000ff'ctrl+tab'^000000 or Click the ^0000ff'map'^000000 button in the Basic Information Window";
  98. mes "Remeber to use the ^ff0000+,-^000000 buttons to adjust the map to your liking.";
  99. goto M_Menu;
  100. M_End:
  101. mes "[Izlude Soldier]";
  102. mes "Try not to get lost.";
  103. cutin "prt_soldier",255;
  104. close;
  105. }