guides_einbr.txt 5.6 KB

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