guides_alb.txt 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. //===== eAthena Script =======================================
  2. //= Alberta Guides
  3. //===== By: ==================================================
  4. //= kobra_k88
  5. //===== Current Version: =====================================
  6. //= 1.3
  7. //===== Compatible With: =====================================
  8. //= eAthena 0.5.2 +
  9. //===== Description: =========================================
  10. //=
  11. //===== Additional Comments: =================================
  12. //= Fully working
  13. //= 1.1 Fixed Armory coords, thanks to Freya team
  14. //= 1.2 Optimized, updated common guide names [Lupus]
  15. //= 1.3 Updated the guide according to how it is on iRO, thanks [MasterOfMuppets]
  16. //= to Muad_Dib
  17. //============================================================
  18. //North
  19. alberta.gat,23,238,4 script Guide::Alb_Guide 105,{
  20. cutin "prt_soldier",2;
  21. mes "[Alberta Guide]";
  22. mes "Welcome to Alberta,";
  23. mes "the Port City. Feel free";
  24. mes "to ask me if you're having";
  25. mes "trouble finding anything in";
  26. mes "town, or if you just need";
  27. mes "guidance around the city.";
  28. L_MENU:
  29. next;
  30. menu "City Guide",L_CITY,"Remove Marks from Mini-Map",L_REMOVE,"Notice",L_NOTICE,"Cancel",L_END;
  31. L_CITY:
  32. mes "[Alberta Guide]";
  33. mes "Please select";
  34. mes "a location from";
  35. mes "the following menu.";
  36. mes "Would you like me";
  37. mes "to mark locations";
  38. mes "on your Mini-Map?";
  39. next;
  40. menu "Yes.",L_YES,"No.",L_NO;
  41. L_NO:
  42. set @COMPASS_CHECK,0;
  43. goto L_CONT;
  44. L_YES:
  45. set @COMPASS_CHECK,1;
  46. L_CONT:
  47. L_MENU_2:
  48. menu "^FF0000Merchant Guild^000000",L_MERCHANT,"Weapon Shop",L_WEAPON,"Tool Shop",L_TOOL,"Inn",L_INN,"Forge",L_FORGE,"Cancel",-;
  49. mes "[Alberta Guide]";
  50. mes "Please ask me to Remove";
  51. mes "Marks from Mini-Map if you";
  52. mes "no longer wish to have the";
  53. mes "location marks displayed";
  54. mes "on your Mini-Map.";
  55. goto L_MENU;
  56. L_MERCHANT:
  57. mes "[Alberta Guide]";
  58. mes "The Merchant Guild,";
  59. mes "handles Job Changes";
  60. mes "to the Merchant Class,";
  61. mes "and is located in the";
  62. mes "southwest corner";
  63. mes "of Alberta.";
  64. viewpoint 1,33,41,1,0xFF0000;
  65. next;
  66. goto L_WIPE;
  67. L_WEAPON:
  68. mes "[Alberta Guide]";
  69. mes "The Weapon Shop";
  70. mes "can be found in the";
  71. mes "southern end of Alberta.";
  72. viewpoint 1,117,37,2,0xFF00FF;
  73. next;
  74. goto L_WIPE;
  75. L_TOOL:
  76. mes "[Alberta Guide]";
  77. mes "The Tool Shop";
  78. mes "is kind of close";
  79. mes "to the center of";
  80. mes "Alberta. It shouldn't";
  81. mes "be too hard to find.";
  82. viewpoint 1,98,154,3,0xFF00FF;
  83. next;
  84. goto L_WIPE;
  85. L_INN:
  86. mes "[Alberta Guide]";
  87. mes "There's and Inn";
  88. mes "at the northern";
  89. mes "end of Alberta";
  90. mes "where you can rest.";
  91. viewpoint 1,65,233,4,0xFF00FF;
  92. next;
  93. goto L_WIPE;
  94. L_FORGE:
  95. mes "[Alberta Guide]";
  96. mes "The Forge in Alberta";
  97. mes "is in the same building";
  98. mes "as the Merchant Guild.";
  99. mes "it's to the southwest.";
  100. viewpoint 1,33,41,5,0xFF00FF;
  101. next;
  102. goto L_WIPE;
  103. L_WIPE:
  104. if(@COMPASS_CHECK == 1)goto L_MENU_2;
  105. viewpoint 2,33,41,1,0xFF0000;
  106. viewpoint 2,117,37,2,0xFF00FF;
  107. viewpoint 2,98,154,3,0xFF00FF;
  108. viewpoint 2,65,233,4,0xFF00FF;
  109. viewpoint 2,33,41,5,0xFF00FF;
  110. goto L_MENU_2;
  111. L_REMOVE:
  112. viewpoint 2,33,41,1,0xFF0000;
  113. viewpoint 2,117,37,2,0xFF00FF;
  114. viewpoint 2,98,154,3,0xFF00FF;
  115. viewpoint 2,65,233,4,0xFF00FF;
  116. viewpoint 2,33,41,5,0xFF00FF;
  117. goto L_MENU;
  118. L_NOTICE:
  119. mes "[Alberta Guide]";
  120. mes "Advances in sorcery and";
  121. mes "technology have allowed";
  122. mes "us to update our information";
  123. mes "system, enabling up to mark";
  124. mes "locations on your Mini-Map";
  125. mes "for easier navigation.";
  126. next;
  127. mes "[Alberta Guide]";
  128. mes "Your Mini-Map is located";
  129. mes "in the upper right corner";
  130. mes "of the screen. If you can't";
  131. mes "see it, press the Ctrl + Tab";
  132. mes "keys or click the 'Map' button";
  133. mes "in your Basic Information Window.";
  134. next;
  135. mes "[Alberta Guide]";
  136. mes "On your Mini-Map,";
  137. mes "click on the '+' and '-'";
  138. mes "symbols to zoom in and";
  139. mes "out of your Mini-Map. We";
  140. mes "hope you enjoy your travels";
  141. mes "here in the city of Alberta.";
  142. goto L_MENU;
  143. L_END:
  144. mes "[Alberta Guide]";
  145. mes "Be safe when you";
  146. mes "travel and don't hesitate";
  147. mes "to ask me if you have any";
  148. mes "questions about Alberta.";
  149. cutin "prt_soldier",255;
  150. close;
  151. }
  152. // South --------------------------------------------------------
  153. alberta.gat,120,60,3 duplicate(Alb_Guide) Guide#2 105