guides_lhz.txt 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361
  1. //===== eAthena Script =======================================
  2. //= Lighthalzen Guides
  3. //===== By: ==================================================
  4. //= MasterOfMuppets
  5. //===== Current Version: =====================================
  6. //= 1.0
  7. //===== Compatible With: =====================================
  8. //=
  9. //===== Description: =========================================
  10. //= Lighthalzen Guide NPCs
  11. //===== Additional Comments: =================================
  12. //= 1.0 First Version [MasterOfMuppets]
  13. //============================================================
  14. lighthalzen.gat,220,311,3 script Guide::LhzSlum 852,{
  15. mes "[Lighthalzen Guide]";
  16. mes "welcome to Lighthalzen,";
  17. mes "the Coropration City-State.";
  18. mes "If you need any guidance";
  19. mes "around the city, feel free.";
  20. mes "to ask me and I'll do my";
  21. mes "very best to help you.";
  22. next;
  23. loopback:
  24. menu "City Guide",s_Guide,"Remove Marks from Mini-Map",s_Remove,"Notice.",s_Notice,"Cancel",-;
  25. mes "[Lighthalzen Guide]";
  26. mes "Lighthalzen is divided";
  27. mes "into the East and West";
  28. mes "districts by a railroad that";
  29. mes "runs right through the middle.";
  30. mes "There are always guards on";
  31. mes "watch to protect the peace.";
  32. next;
  33. mes "[Lighthalzen Guide]";
  34. mes "Please don't hesitate";
  35. mes "to report and suspicious";
  36. mes "activity or persons to us.";
  37. mes "We hope that you enjoy";
  38. mes "our fair city, adventurer.";
  39. close;
  40. s_Guide:
  41. mes "[Lighthalzen Guide]";
  42. mes "Please be aware that I'm";
  43. mes "in charge of providing info";
  44. mes "regarding the East District,";
  45. mes "more commonly known as the";
  46. mes "Slums. Select the location that";
  47. mes "you'd like know more about.";
  48. next;
  49. mes "[Lighthalzen Guide]";
  50. mes "But before that,";
  51. mes "would you like me";
  52. mes "to mark locations";
  53. mes "on your Mini-Map?";
  54. next;
  55. Menu "Yes",s_Yes,"No",-;
  56. goto s_Cont;
  57. s_Yes:
  58. set @tempguide,1;
  59. s_Cont:
  60. menu "Tool Shop",s_Tool,"Mill",s_Mill,"Pub",s_Pub,"Cancel",-;
  61. mes "[Lighthalzen Guide]";
  62. mes "Please ask me to \"Remove";
  63. mes "Marks from Mini-Map\" if you";
  64. mes "no longer wish to have the";
  65. mes "location marks displayed";
  66. mes "on your Mini-Map.";
  67. next;
  68. goto loopback;
  69. s_Tool:
  70. mes "[Lighthalzen Guide]";
  71. mes "The Tool Shop is";
  72. mes "located in the 11 o' clock";
  73. mes "direction from the center";
  74. mes "of the East District.";
  75. if(@tempguide)viewpoint 1,324,301,1,0xFF0000;
  76. next;
  77. goto s_Cont;
  78. s_Mill:
  79. mes "[Lighthalzen Guide]";
  80. mes "On your Mini-Map,";
  81. mes "the Mill can be found in";
  82. mes "the 1 o'clock direction";
  83. mes "in the East District.";
  84. if(@tempguide)viewpoint 1,365,301,2,0xFF00FF;
  85. next;
  86. goto s_Cont;
  87. s_Pub:
  88. mes "[Lighthalzen Guide]";
  89. mes "The Pub is located";
  90. mes "in the southern part";
  91. mes "of the East District.";
  92. if(@tempguide)viewpoint 1,346,232,3,0xCCFFFF;
  93. next;
  94. goto s_Cont;
  95. s_Remove:
  96. viewpoint 2,324,301,1,0xFF0000;
  97. viewpoint 2,365,301,2,0xFF00FF;
  98. viewpoint 2,346,232,3,0xCCFFFF;
  99. mes "[Lighthalzen Guide]";
  100. mes "Okay, the marks from your Mini-Map have been removed.";
  101. mes "If you need any guidance around Lighthalzen, please let me or one of the other Lighthalzen Guides know.";
  102. next;
  103. goto loopback;
  104. s_Notice:
  105. mes "[Lighthalzen Guide]";
  106. mes "Advances in sorcery and";
  107. mes "techonlogy have allowed";
  108. mes "us to update our information";
  109. mes "system, enabling up to mark";
  110. mes "locations on your Mini-Map";
  111. mes "for easier navigation.";
  112. next;
  113. mes "[Lighthalzen Guide]";
  114. mes "Your Mini-Map is located";
  115. mes "in the upper right cornern";
  116. mes "of the screen. If you can't";
  117. mes "see it, press the Ctrl + Tab";
  118. mes "keys or click the \"Map\" button";
  119. mes "in your Basic Info Window.";
  120. next;
  121. mes "[Lighthalzen Guide]";
  122. mes "On your Mini-Map,";
  123. mes "click on the \"+\" and \"-\"";
  124. mes "symbols to zoom in and";
  125. mes "out of your Mini-Map. We";
  126. mes "hope you enjoy your travels";
  127. mes "here in Lighthalzen.";
  128. next;
  129. goto loopback;
  130. }
  131. lighthalzen.gat,207,311,3 script Guide::LhzWest 852,{
  132. mes "[Lighthalzen Guide]";
  133. mes "welcome to Lighthalzen,";
  134. mes "the Coropration City-State.";
  135. mes "If you need any guidance";
  136. mes "around the city, feel free.";
  137. mes "to ask me and I'll do my";
  138. mes "very best to help you.";
  139. next;
  140. loopback:
  141. menu "City Guide",s_Guide,"Remove Marks from Mini-Map",s_Remove,"Notice.",s_Notice,"Cancel",-;
  142. mes "[Lighthalzen Guide]";
  143. mes "Lighthalzen is divided";
  144. mes "into the East and West";
  145. mes "districts by a railroad that";
  146. mes "runs right through the middle.";
  147. mes "There are always guards on";
  148. mes "watch to protect the peace.";
  149. next;
  150. mes "[Lighthalzen Guide]";
  151. mes "Please don't hesitate";
  152. mes "to report and suspicious";
  153. mes "activity or persons to us.";
  154. mes "We hope that you enjoy";
  155. mes "our fair city, adventurer.";
  156. close;
  157. s_Guide:
  158. mes "[Lighthalzen Guide]";
  159. mes "Please be aware that I'm";
  160. mes "in charge of providing info";
  161. mes "regarding the West District,";
  162. mes "of Lighthalzen. Now, please";
  163. mes "select the location that you'd";
  164. mes "like to learn more about.";
  165. next;
  166. mes "[Lighthalzen Guide]";
  167. mes "But before that,";
  168. mes "would you like me";
  169. mes "to mark locations";
  170. mes "on your Mini-Map?";
  171. next;
  172. Menu "Yes",s_Yes,"No",-;
  173. goto s_Cont;
  174. s_Yes:
  175. set @tempguide,1;
  176. s_Cont:
  177. menu "^FF0000Rekenber Corporation",s_Rekenber,"^000000Train Station",s_Train,"Police Station",s_Police,"Bank",s_Bank,"Hotel",s_Hotel,"Airport",s_Airport,"Merchant Guild",s_Merchant,"Jewel Shop",s_Jewel,"Weapon Shop",s_Weap,"Department Store",s_Store,"Cancel",-;
  178. mes "[Lighthalzen Guide]";
  179. mes "Please ask me to \"Remove";
  180. mes "Marks from Mini-Map\" if you";
  181. mes "no longer wish to have the";
  182. mes "location marks displayed";
  183. mes "on your Mini-Map.";
  184. next;
  185. goto loopback;
  186. s_Rekenber:
  187. mes "[Lighthalzen Guide]";
  188. mes "Rekenber Corporation,";
  189. mes "the largest company in";
  190. mes "the Schwartzwald Republic,";
  191. mes "is located in the northwestern";
  192. mes "Lighthalzen. You can't miss";
  193. mes "the headquarters building.";
  194. if(@tempguide)viewpoint 1,103,244,1,0xFF0000;
  195. next;
  196. goto s_Cont;
  197. s_Train:
  198. mes "[Lighthalzen Guide]";
  199. mes "The Train Station is";
  200. mes "located in the center of";
  201. mes "the city, where we have";
  202. mes "a direct railroad to Einbroch.";
  203. if(@tempguide)viewpoint 1,240,163,2,0xFF00FF;
  204. next;
  205. goto s_Cont;
  206. s_Police:
  207. mes "[Lighthalzen Guide]";
  208. mes "Our Police Station is just";
  209. mes "north of the city's center.";
  210. mes "Please don't hesitate to report";
  211. mes "any suspicious persons and";
  212. mes "activity, or if you have any";
  213. mes "problems whatsoever.";
  214. if(@tempguide)viewpoint 1,236,276,3,0xCCFFFF;
  215. next;
  216. goto s_Cont;
  217. s_Bank:
  218. mes "[Lighthalzen Guide]";
  219. mes "The Bank is located";
  220. mes "just opposite to the";
  221. mes "Lighthalzen Police Station,";
  222. mes "which is a pretety good idea";
  223. mes "when I think about it, actually.";
  224. if(@tempguide)viewpoint 1,199,257,4,0x0000FF;
  225. next;
  226. goto s_Cont;
  227. s_Hotel:
  228. mes "[Lighthalzen Guide]";
  229. mes "Our Hotel is located in";
  230. mes "the middle of the South Plaza.";
  231. mes "Due to its quality of services and";
  232. mes "luxurious accomodations, this";
  233. mes "hotel is extremely popular.";
  234. if(@tempguide)viewpoint 1,159,133,5,0x0FFF00;
  235. next;
  236. goto s_Cont;
  237. s_Airport:
  238. mes "[Lighthalzen Guide]";
  239. mes "The Airport is to the far";
  240. mes "west of the Central Promenade";
  241. mes "You can travel anywhere within";
  242. mes "the Schwartzwald Republic by";
  243. mes "riding one of the Airships.";
  244. if(@tempguide)viewpoint 1,266,76,6,0x00FF00;
  245. next;
  246. goto s_Cont;
  247. s_Merchant:
  248. mes "[Lighthalzen Guide]";
  249. mes "The Merchant Guild can be";
  250. mes "found in the southwestern";
  251. mes "part of Lighthalzen.";
  252. if(@tempguide)viewpoint 1,74,52,7,0xEFAEBD;
  253. next;
  254. goto s_Cont;
  255. s_Jewel:
  256. mes "[Lighthalzen Guide]";
  257. mes "The Jewelry Shop is";
  258. mes "located just west of";
  259. mes "the South Plaza.";
  260. if(@tempguide)viewpoint 1,92,110,8,0xFF9500;
  261. next;
  262. goto s_Cont;
  263. s_Weap:
  264. mes "[Lighthalzen Guide]";
  265. mes "The Weapon Shop is";
  266. mes "located at the end of";
  267. mes "the Central Promenade.";
  268. mes "It's at least worth a look";
  269. mes "if you're serious about";
  270. mes "adventuring around here.";
  271. if(@tempguide)viewpoint 1,196,46,9,0x330033;
  272. next;
  273. goto s_Cont;
  274. s_Store:
  275. mes "[Lighthalzen Guide]";
  276. mes "The Department Store is";
  277. mes "located in the middle of";
  278. mes "Lighthalzen and is the biggest";
  279. mes "and most convenient place for";
  280. mes "shopping for almost everything.";
  281. if(@tempguide)viewpoint 1,199,163,10,0xFFFF00;
  282. next;
  283. goto s_Cont;
  284. s_Remove:
  285. viewpoint 2,103,244,1,0xFF0000;
  286. viewpoint 2,240,163,2,0xFF00FF;
  287. viewpoint 2,236,276,3,0xCCFFFF;
  288. viewpoint 2,199,257,4,0x0000FF;
  289. viewpoint 2,159,133,5,0x0FFF00;
  290. viewpoint 2,266,76,6,0x00FF00;
  291. viewpoint 2,74,52,7,0xEFAEBD;
  292. viewpoint 2,92,110,8,0xFF9500;
  293. viewpoint 2,196,46,9,0x330033;
  294. viewpoint 2,199,163,10,0xFFFF00;
  295. mes "[Lighthalzen Guide]";
  296. mes "Okay, the marks from your Mini-Map have been removed.";
  297. mes "If you need any guidance around Lighthalzen, please let me or one of the other Lighthalzen Guides know.";
  298. next;
  299. goto loopback;
  300. s_Notice:
  301. mes "[Lighthalzen Guide]";
  302. mes "Advances in sorcery and";
  303. mes "techonlogy have allowed";
  304. mes "us to update our information";
  305. mes "system, enabling up to mark";
  306. mes "locations on your Mini-Map";
  307. mes "for easier navigation.";
  308. next;
  309. mes "[Lighthalzen Guide]";
  310. mes "Your Mini-Map is located";
  311. mes "in the upper right cornern";
  312. mes "of the screen. If you can't";
  313. mes "see it, press the Ctrl + Tab";
  314. mes "keys or click the \"Map\" button";
  315. mes "in your Basic Info Window.";
  316. next;
  317. mes "[Lighthalzen Guide]";
  318. mes "On your Mini-Map,";
  319. mes "click on the \"+\" and \"-\"";
  320. mes "symbols to zoom in and";
  321. mes "out of your Mini-Map. We";
  322. mes "hope you enjoy your travels";
  323. mes "here in Lighthalzen.";
  324. next;
  325. goto loopback;
  326. }
  327. lighthalzen.gat,154,100,5 duplicate(LhzWest) Guide 852
  328. lighthalzen.gat,319,243,5 duplicate(LhzSlum) Guide 852