guides_izl.txt 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. //===== eAthena Script =======================================
  2. //= Izlude Guides
  3. //===== By: ==================================================
  4. //= kobra_k88
  5. //===== Current Version: =====================================
  6. //= 1.3
  7. //===== Compatible With: =====================================
  8. //= eAthena 7.15 +
  9. //===== Description: =========================================
  10. //=
  11. //===== Additional Comments: =================================
  12. //= Fully working
  13. //= 1.2 Optimized, updated common guide names [Lupus]
  14. //= 1.3 Updated the guide according to how it is on iRO, thanks [MasterOfMuppets]
  15. //= to Muad_Dib
  16. //============================================================
  17. izlude.gat,121,87,6 script Guide 105,{
  18. cutin "prt_soldier",2;
  19. mes "[Izlude Guide]";
  20. mes "Welcome to Izlude,";
  21. mes "Prontera's satellite city.";
  22. mes "If you need any guidance";
  23. mes "around Izlude, feel free";
  24. mes "to ask me at anytime.";
  25. L_MENU:
  26. next;
  27. menu "City Guide",L_CITY,"Remove Marks from Mini-Map",L_REMOVE,"Notice",L_NOTICE,"Cancel",L_END;
  28. L_CITY:
  29. mes "[Izlude Guide]";
  30. mes "Please select";
  31. mes "a location from";
  32. mes "the following menu.";
  33. mes "Would you like me";
  34. mes "to mark locations";
  35. mes "on your Mini-Map?";
  36. next;
  37. menu "Yes.",L_YES,"No.",L_NO;
  38. L_NO:
  39. set @COMPASS_CHECK,0;
  40. goto L_CONT;
  41. L_YES:
  42. set @COMPASS_CHECK,1;
  43. L_CONT:
  44. L_MENU_2:
  45. menu "^FF0000Swordman Association^000000",L_SWORD,"Swordman Hall",L_HALL,"Arena",L_ARENA,"Izlude Marina",L_MARINA,"Weapon Shop",L_WEAPON,"Tool Shop",L_TOOL,"Cancel",-;
  46. mes "[Izlude Guide]";
  47. mes "Pleas ask me to Remove";
  48. mes "Marks from Mini-Map if you";
  49. mes "no longer wish to have the";
  50. mes "location marks displayed";
  51. mes "on your Mini-Map.";
  52. goto L_MENU;
  53. L_SWORD:
  54. mes "[Izlude Guide]";
  55. mes "The Swordman Association";
  56. mes "is located on an island that is";
  57. mes "in west Izlude. If you're thinking";
  58. mes "of changing jobs to Swordman,";
  59. mes "you should check it out.";
  60. viewpoint 1,52,140,1,0xFF0000;
  61. next;
  62. goto L_WIPE;
  63. L_HALL:
  64. mes "[Izlude Guide]";
  65. mes "The Swordman Hall";
  66. mes "is located on the eastern";
  67. mes "island connected to Izlude.";
  68. viewpoint 1,214,130,2,0x00FF00;
  69. next;
  70. goto L_WIPE;
  71. L_ARENA:
  72. mes "[Izlude Guide]";
  73. mes "Izlude's famous";
  74. mes "Arena is located at the";
  75. mes "northern end of Izlude.";
  76. viewpoint 1,128,225,3,0x00FF00;
  77. next;
  78. goto L_WIPE;
  79. L_MARINA:
  80. mes "[Izlude Guide]";
  81. mes "You can find the";
  82. mes "Marina in the northeast";
  83. mes "part of Izlude. There, you can";
  84. mes "ride a ship wich will take you";
  85. mes "to Alberta or Byalan Island.";
  86. viewpoint 1,200,180,4,0xFF0000;
  87. next;
  88. goto L_WIPE;
  89. L_WEAPON:
  90. mes "[Izlude Guide]";
  91. mes "You can easily";
  92. mes "find the Weapon Shop";
  93. mes "in northwest Izlude.";
  94. viewpoint 1,111,149,5,0xFF00FF;
  95. next;
  96. goto L_WIPE;
  97. L_TOOL:
  98. mes "[Izlude Guide]";
  99. mes "The Tool Shop shouldn't";
  100. mes "be too hard to find in the";
  101. mes "northeast part of Izlude.";
  102. viewpoint 1,148,148,6,0xFF00FF;
  103. next;
  104. goto L_WIPE;
  105. L_WIPE:
  106. if(@COMPASS_CHECK == 1)goto L_MENU_2;
  107. viewpoint 2,52,140,1,0xFF0000;
  108. viewpoint 2,214,130,2,0x00FF00;
  109. viewpoint 2,128,225,3,0x00FF00;
  110. viewpoint 2,200,180,4,0xFF0000;
  111. viewpoint 2,111,149,5,0xFF00FF;
  112. viewpoint 2,148,148,6,0xFF00FF;
  113. goto L_MENU_2;
  114. L_REMOVE:
  115. viewpoint 2,52,140,1,0xFF0000;
  116. viewpoint 2,214,130,2,0x00FF00;
  117. viewpoint 2,128,225,3,0x00FF00;
  118. viewpoint 2,200,180,4,0xFF0000;
  119. viewpoint 2,111,149,5,0xFF00FF;
  120. viewpoint 2,148,148,6,0xFF00FF;
  121. goto L_MENU;
  122. L_NOTICE:
  123. mes "[Izlude Guide]";
  124. mes "Advances in sorcery and";
  125. mes "technology have allowed";
  126. mes "us to update our information";
  127. mes "system, enabling up to mark";
  128. mes "locations on your Mini-Map";
  129. mes "for easier navigation.";
  130. next;
  131. mes "[Izlude Guide]";
  132. mes "Your Mini-Map is located";
  133. mes "in the upper right corner";
  134. mes "of the screen. If you can't";
  135. mes "see it, press the Ctrl + Tab";
  136. mes "keys or click the 'Map' button";
  137. mes "in your Basic Information Window.";
  138. next;
  139. mes "[Izlude Guide]";
  140. mes "On your Mini-Map,";
  141. mes "click on the '+' and '-'";
  142. mes "symbols to zoom in and";
  143. mes "out of your Mini-Map. We";
  144. mes "hope you enjoy your travels";
  145. mes "here in the city of Izlude.";
  146. goto L_MENU;
  147. L_END:
  148. mes "[Izlude Guide]";
  149. mes "Okay then, feel";
  150. mes "free to come to me";
  151. mes "if you ever geel lost";
  152. mes "around Izlude, alright?";
  153. cutin "prt_soldier",255;
  154. close;
  155. }