guides_lhz.txt 9.6 KB

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