guides_einbr.txt 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. //===== eAthena Script =======================================
  2. //= Einbroch Guides
  3. //===== By: ==================================================
  4. //= Reddozen
  5. //===== Current Version: =====================================
  6. //= 1.4
  7. //===== Compatible With: =====================================
  8. //= eAthena 7.15 +
  9. //===== Description: =========================================
  10. //=
  11. //===== Additional Comments: =================================
  12. //= 1.0b missing tabs, fixed Guide coords [Lupus]
  13. //= 1.1 added 1 more Guide NPC, thanx to Justin84 [Lupus]
  14. //= 1.2 Optimized, updated common guide names [Lupus]
  15. //= 1.3 Fitted the many lines into 1 or 2, and corrected some typos [erKURITA]
  16. //= 1.4 Removed Duplicates [Silent]
  17. //============================================================
  18. einbroch.gat,72,202,4 script Guide#1::Einbroch_Guide 852,{
  19. cutin "ein_soldier",2;
  20. mes "[Einbroch Guide]";
  21. mes "Welcome to Einbroch, the City of Steel.";
  22. mes "Please ask me if you have any questions";
  23. M_Menu:
  24. next;
  25. menu "City Guide",-, "Remove Marks from Mini-Map",M_2, "Notice",L_NOTICE, "Cancel",M_End;
  26. mes "[Einbroch Guide]";
  27. mes "Please select a location from the following menu.";
  28. mes "Would you like me to mark locations on your Mini-Map";
  29. next;
  30. menu "No Thanks",-,"Yes Please",sM_1b;
  31. set @COMPASS_CHECK,0;
  32. goto L_Cont;
  33. sM_1b:
  34. set @COMPASS_CHECK,1;
  35. L_Cont:
  36. sM_Menu:
  37. menu "^FF0000Airport^000000",-,"Train Station",sM_2b,"Factory",sM_2c,"Plaza",sM_2d,
  38. "Hotel",sM_2e,"Weapon Shop",sM_2f,"Laboratory",sM_2g,"Blacksmith Guild",sM_2h,
  39. "Einbroch Tower",sM_2i,"Cancel",SM_2j;
  40. mes "[Einbroch Guide]";
  41. mes "The ^FF0000Airport^000000 is is located in the northwestern part of the city.";
  42. mes "There you can see our city's pride and joy, the Airship.";
  43. mes "Remember that you must pay admission to board the Airship.";
  44. viewpoint 1,63,208,1,0xFF0000;
  45. next;
  46. goto sL_Wipe;
  47. sM_2b:
  48. mes "[Einbroch Guide]";
  49. mes "The Train Station is located in the northeast part of Einbroch.";
  50. mes "Trains are running between here and Einbech all day long, everyday.";
  51. viewpoint 1,238,272,2,0x0000FF;
  52. next;
  53. goto sL_Wipe;
  54. sM_2c:
  55. mes "[Einbroch Guide]";
  56. mes "The Factory, perhaps the most important facility in Einbroch, is located in the southern part of the city.";
  57. viewpoint 1,149,80,3,0x00FF00;
  58. next;
  59. goto sL_Wipe;
  60. sM_2d:
  61. mes "[Einbroch Guide]";
  62. mes "The Plaza, our biggest shopping district, can be found just east from the center of Einbroch";
  63. viewpoint 1,231,189,4,0xFF00FF;
  64. next;
  65. goto sL_Wipe;
  66. sM_2e:
  67. mes "[Einbroch Guide]";
  68. mes "The Hotel is east of the Plaza and offers top caliber accomodations.";
  69. mes "There, you can enjoy your stay in Einbroch in comfort~";
  70. viewpoint 1,257,200,5,0x00AAFF;
  71. next;
  72. goto sL_Wipe;
  73. sM_2f:
  74. mes "[Einbroch Guide]";
  75. mes "The Weapon Shop is located north from the Plaza.";
  76. mes "There you can purchase weapons for your personal use.";
  77. viewpoint 1,217,212,6,0xDDAA00;
  78. next;
  79. goto sL_Wipe;
  80. sM_2g:
  81. mes "[Einbroch Guide]";
  82. mes "The Laboratory is an annex of the factory and is located in the southwest sector of Einbech";
  83. viewpoint 1,43,45,7,0xDDAA00;
  84. next;
  85. goto sL_Wipe;
  86. sM_2h:
  87. mes "[Einbroch Guide]";
  88. mes "The Blacksmith Guild is located in the southeast part of Einbroch.";
  89. mes "You can upgrade your equipment by using their services.";
  90. viewpoint 1,255,105,8,0xDDAA00;
  91. next;
  92. goto sL_Wipe;
  93. sM_2i:
  94. mes "[Einbroch Guide]";
  95. mes "The Einbroch Tower is located in the center of the city.";
  96. mes "From the top of the tower, you can view all of Einbroch.";
  97. viewpoint 1,173,195,9,0xDDAA00;
  98. next;
  99. goto sL_Wipe;
  100. SM_2j:
  101. mes "[Einbroch Guide]";
  102. mes "Please ask me to Remove";
  103. mes "Marks from Mini-Map if you";
  104. mes "no longer wish to have the";
  105. mes "location marks displayed";
  106. mes "on your Mini-Map.";
  107. goto M_Menu;
  108. sL_Wipe:
  109. if(@COMPASS_CHECK == 1) goto sM_Menu;
  110. viewpoint 2,63,208,1,0xFF0000;
  111. viewpoint 2,238,272,2,0x0000FF;
  112. viewpoint 2,149,80,3,0x00FF00;
  113. viewpoint 2,231,189,4,0xFF00FF;
  114. viewpoint 2,257,200,5,0x00AAFF;
  115. viewpoint 2,217,212,6,0xDDAA00;
  116. viewpoint 2,43,45,7,0xDDAA00;
  117. viewpoint 2,255,105,8,0xDDAA00;
  118. viewpoint 2,173,195,9,0xDDAA00;
  119. if (@COMPASS_CHECK == 0) goto sM_Menu;
  120. M_2:
  121. viewpoint 2,63,208,1,0xFF0000;
  122. viewpoint 2,238,272,2,0x0000FF;
  123. viewpoint 2,149,80,3,0x00FF00;
  124. viewpoint 2,231,189,4,0xFF00FF;
  125. viewpoint 2,257,200,5,0x00AAFF;
  126. viewpoint 2,217,212,6,0xDDAA00;
  127. viewpoint 2,43,45,7,0xDDAA00;
  128. viewpoint 2,255,105,8,0xDDAA00;
  129. viewpoint 2,173,195,9,0xDDAA00;
  130. mes "[Einbroch Guide]";
  131. mes "Okay, the marks from your Mini-Map have been removed.";
  132. mes "If you need any guidance around Einbroch, please let me or one of the other Einbroch Guides know.";
  133. cutin "ein_soldier",255;
  134. goto M_Menu;
  135. L_NOTICE:
  136. mes "[Einbroch Guide]";
  137. mes "Through the technology of the Schwartzwalt Republic, we've upgraded to a digital information system that allows us to mark locations on your Mini-Map for easier navigation.";
  138. next;
  139. mes "[Einbroch Guide]";
  140. mes "Your Mini-Map is located in the upper right corner of the screen.";
  141. mes "If you can't see it, press the Ctrl + Tab keys or click the 'Map' button in your Basic Information Window.";
  142. next;
  143. mes "[Einbroch Guide]";
  144. mes "On your Mini-Map, click on the '+' and '-' symbols to zoom in and out of your Mini-Map.";
  145. mes "We hope you enjoy your travels here in the city of Einbroch.";
  146. goto M_Menu;
  147. M_End:
  148. mes "[Einbroch Guide]";
  149. mes "We hope that you enjoy your travels here in Einbroch. Oh, and please be aware of the Smog Alerts";
  150. cutin "ein_soldier",255;
  151. close;
  152. }
  153. einbroch.gat,155,43,4 duplicate(Einbroch_Guide) Guide#Einb2 852
  154. einbroch.gat,162,317,4 duplicate(Einbroch_Guide) Guide#Einb3 852