guides_einbe.txt 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. //===== eAthena Script =======================================
  2. //= Einbech Guides
  3. //===== By: ==================================================
  4. //= Muad_dib
  5. //===== Current Version: =====================================
  6. //= 1.2
  7. //===== Compatible With: =====================================
  8. //= eAthena 7.15 +
  9. //===== Description: =========================================
  10. //=
  11. //===== Additional Comments: =================================
  12. //= 1.0 Einbech guide by Muad_dib in prometheus format
  13. //= 1.0a Conversion to eA format [MasterOfMuppets]
  14. //= 1.1 missing tabs [Lupus]
  15. //= 1.2 Optimized, updated common guide names [Lupus]
  16. //============================================================
  17. einbech.gat,67,37,4 script Guide#1::Einbech_Guide 852,{
  18. cutin "ein_soldier",2;
  19. mes "[Einbech Guide]";
  20. mes "Welcome to Einbech,";
  21. mes "the Mining Town. We're";
  22. mes "here to assist tourists,";
  23. mes "so if you have any questions,";
  24. mes "please feel free to ask us.";
  25. L_MENU:
  26. next;
  27. menu "City Guide",-,"Remove Marks from Mini-Map",L_REMOVE,"Notice",L_NOTICE,"Cancel",L_END;
  28. mes "[Einbech Guide]";
  29. mes "Please select";
  30. mes "a location from";
  31. mes "the following menu.";
  32. mes "Would you like me";
  33. mes "to mark locations";
  34. mes "on your Mini-Map?";
  35. next;
  36. menu "Yes.",L_YES,"No.",-;
  37. set @COMPASS_CHECK,0;
  38. goto L_CONT;
  39. L_YES:
  40. set @COMPASS_CHECK,1;
  41. L_CONT:
  42. L_MENU_2:
  43. menu "Train Station",L_TRAIN,"Tavern",L_TAVERN,"Tool Shop",L_TOOL,"Swordman Guild",L_SWORD,"Mine",L_MINE,"Cancel",-;
  44. mes "[Einbech Guide]";
  45. mes "Pleas ask me to Remove";
  46. mes "Marks from Mini-Map if you";
  47. mes "no longer wish to have the";
  48. mes "location marks displayed";
  49. mes "on your Mini-Map.";
  50. goto L_MENU;
  51. L_TRAIN:
  52. mes "[Einbech Guide]";
  53. mes "The Train Stations are";
  54. mes "located in the nortwest";
  55. mes "and northeast parts of";
  56. mes "Einbech. There, you can";
  57. mes "take a train to Einbroch.";
  58. mes "long, everyday.";
  59. viewpoint 1,44,216,1,0xFF0000;
  60. next;
  61. goto L_WIPE;
  62. L_TAVERN:
  63. mes "[Einbech Guide]";
  64. mes "The Tavern is located";
  65. mes "in the southern part of";
  66. mes "Einbech. It's a nice place";
  67. mes "to relax after a long day.";
  68. viewpoint 1,145,112,2,0xFF00FF;
  69. next;
  70. goto L_WIPE;
  71. L_TOOL:
  72. mes "[Einbech Guide]";
  73. mes "You can find the Tool";
  74. mes "Shop in the center of";
  75. mes "Einbech. There, you can";
  76. mes "purchase any tools you";
  77. mes "might need for your travels.";
  78. viewpoint 1,177,135,3,0xFF00FF;
  79. next;
  80. goto L_WIPE;
  81. L_SWORD:
  82. mes "[Einbech Guide]";
  83. mes "The Swordman Guild";
  84. mes "is located in the eastern";
  85. mes "outskirts of Einbech. It's";
  86. mes "under construction and they";
  87. mes "haven't started accepting";
  88. mes "applications.";
  89. viewpoint 1,253,109,4,0xFF00FF;
  90. next;
  91. goto L_WIPE;
  92. L_MINE:
  93. mes "[Einbech Guide]";
  94. mes "The Mine, wich is";
  95. mes "Einbech's major industry,";
  96. mes "is located in the northern";
  97. mes "part of this town. It's where";
  98. mes "we get all our ores, although";
  99. mes "monsters get in the miners way.";
  100. viewpoint 1,138,250,5,0x00FF00;
  101. next;
  102. goto L_WIPE;
  103. L_WIPE:
  104. if(@COMPASS_CHECK == 1)goto L_MENU_2;
  105. viewpoint 2,44,216,1,0xFF0000;
  106. viewpoint 2,145,112,2,0xFF00FF;
  107. viewpoint 2,177,135,3,0xFF00FF;
  108. viewpoint 2,253,109,4,0xFF00FF;
  109. viewpoint 2,138,250,5,0x00FF00;
  110. goto L_MENU_2;
  111. L_REMOVE:
  112. viewpoint 2,44,216,1,0xFF0000;
  113. viewpoint 2,145,112,2,0xFF00FF;
  114. viewpoint 2,177,135,3,0xFF00FF;
  115. viewpoint 2,253,109,4,0xFF00FF;
  116. viewpoint 2,138,250,5,0x00FF00;
  117. mes "[Einbech Guide]";
  118. mes "Okay, the marks from";
  119. mes "your Mini-Map have been";
  120. mes "removed. If you need any";
  121. mes "guidance around Einbroch";
  122. mes "please let me or one of the";
  123. mes "other Einbech Guides know.";
  124. goto L_MENU;
  125. L_NOTICE:
  126. mes "[Einbech Guide]";
  127. mes "Through the technology of";
  128. mes "the Schwartzwalt Republic,";
  129. mes "we've upgraded to a digital";
  130. mes "information system that allows";
  131. mes "us to mark locations on your";
  132. mes "Mini-Map for easier navigation.";
  133. next;
  134. mes "[Einbech Guide]";
  135. mes "Your Mini-Map is located";
  136. mes "in the upper right corner";
  137. mes "of the screen. If you can't";
  138. mes "see it, press the Ctrl + Tab";
  139. mes "keys or click the 'Map' button";
  140. mes "in your Basic Information Window.";
  141. next;
  142. mes "[Einbech Guide]";
  143. mes "On your Mini-Map,";
  144. mes "click on the '+' and '-'";
  145. mes "symbols to zoom in and";
  146. mes "out of your Mini-Map. We";
  147. mes "hope you enjoy your travels";
  148. mes "here in Einbech, adventurer.";
  149. goto L_MENU;
  150. L_END:
  151. mes "[Einbech Guide]";
  152. mes "We hope that you";
  153. mes "enjoy your travels";
  154. mes "here in Einbech.";
  155. cutin "ein_soldier",255;
  156. close;
  157. }
  158. einbech.gat,48,214,4 duplicate(Einbech_Guide) Guide#2 852