guides_gef.txt 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. //===== eAthena Script =======================================
  2. //= Geffen Guides
  3. //===== By: ==================================================
  4. //= kobra_k88; L0ne_W0lf
  5. //===== Current Version: =====================================
  6. //= 1.4a
  7. //===== Compatible With: =====================================
  8. //= eAthena SVN
  9. //===== Description: =========================================
  10. //= [Aegis COnversion]
  11. //= Guides for the City of Geffen
  12. //===== Additional Comments: =================================
  13. //= Fully working. Added a guide at every exit.
  14. //= v1.1 Now using duplicate command.
  15. //= 1.2 Optimized, updated common guide names [Lupus]
  16. //= 1.2a Small note that the BS guild moved to Einbroch [Poki#3]
  17. //= 1.3 Removed Duplicates [Silent]
  18. //= 1.4a Rescripted to Aegis 10.3 standards. [L0ne_W0lf]
  19. //= 1.4 Fixed some errors with the loop[Samuray22]
  20. // -Thanks to $ephiroth.
  21. //============================================================
  22. geffen,203,116,0 script Guide#gef::GefGuide 705,{
  23. cutin "gef_soldier",2;
  24. mes "[Geffen Guide]";
  25. mes "Welcome to Geffen,";
  26. mes "the City of Magic. If you";
  27. mes "need any guidance around";
  28. mes "the city, feel free to ask me";
  29. mes "and I'll do my best to assist you. ^FFFFFFcobo^000000";
  30. set .@loop1,1;
  31. while (.@loop1) {
  32. next;
  33. switch(select("City Guide:Remove Marks from Mini-Map:Notice.:Cancel")) {
  34. case 1:
  35. mes "[Geffen Guide]";
  36. mes "Please select";
  37. mes "a location from";
  38. mes "the following menu.";
  39. if (compass_check == 0) {
  40. mes "Would you like me";
  41. mes "to mark locations";
  42. mes "on your Mini-Map?";
  43. next;
  44. if (select("Yes:No") == 1) set .@compass_check,1;
  45. }
  46. set .@loop2,1;
  47. while (.@loop2) {
  48. if (.@wait_button_chk == 0) set .@wait_button_chk,1;
  49. else next;
  50. // next;
  51. switch(select("^FF0000Magic Acedemy^000000:Forge Shop:Weapon Shop:Tool Shop:Pub:Inn:Geffen Tower:Cancel")) {
  52. case 1:
  53. mes "[Geffen Guide]";
  54. mes "The Magic Academy in";
  55. mes "northwest Geffen handles";
  56. mes "Job Changes to the Mage class.";
  57. if (.@compass_check)
  58. viewpoint 1,61,180,2,0xFF0000;
  59. break;
  60. case 2:
  61. mes "[Geffen Guide]";
  62. mes "The Forge Shop is";
  63. mes "located just southeast";
  64. mes "from the center of Geffen.";
  65. if (.@compass_check)
  66. viewpoint 1,182,59,3,0x00FF00;
  67. break;
  68. case 3:
  69. mes "[Geffen Guide]";
  70. mes "The Weapon Shop";
  71. mes "can be found northwest";
  72. mes "from the center of Geffen.";
  73. if (.@compass_check)
  74. viewpoint 1,99,140,4,0xFF00FF;
  75. break;
  76. case 4:
  77. mes "[Geffen Guide]";
  78. mes "You can find the";
  79. mes "Tool Shop by heading";
  80. mes "southwest from the";
  81. mes "center of Geffen.";
  82. if (.@compass_check)
  83. viewpoint 1,44,86,5,0xFF00FF;
  84. break;
  85. case 5:
  86. mes "[Geffen Guide]";
  87. mes "The Pub can be";
  88. mes "found northeast";
  89. mes "from the Geffen Tower.";
  90. if (.@compass_check)
  91. viewpoint 1,138,138,6,0xFF00FF;
  92. break;
  93. case 6:
  94. mes "[Geffen Guide]";
  95. mes "The Inn can be";
  96. mes "found by traveling";
  97. mes "northeast from the";
  98. mes "center of Geffen.";
  99. if (.@compass_check)
  100. viewpoint 1,172,174,7,0xFF00FF;
  101. break;
  102. case 7:
  103. mes "[Geffen Guide]";
  104. mes "Geffen Tower is found";
  105. mes "in the center of the city.";
  106. mes "The Wizard Guild is at the";
  107. mes "top, and there's even a dungeon";
  108. mes "underneath it. There's many a";
  109. mes "mystery surrounding that tower...";
  110. if (.@compass_check)
  111. viewpoint 1,120,114,8,0x00FF00;
  112. break;
  113. case 8:
  114. mes "[Geffen Guide]";
  115. mes "Please ask me to ''Remove";
  116. mes "Marks from Mini-Map'' if you";
  117. mes "no longer wish to have the";
  118. mes "location marks displayed";
  119. mes "on your Mini-Map.";
  120. set .@loop2,0;
  121. break;
  122. }
  123. }
  124. break;
  125. case 2:
  126. viewpoint 2,237,41,2,0xFF0000;
  127. viewpoint 2,237,41,3,0x00FF00;
  128. viewpoint 2,46,345,4,0xFF00FF;
  129. viewpoint 2,175,220,5,0xFF00FF;
  130. viewpoint 2,134,221,6,0xFF00FF;
  131. viewpoint 2,204,214,7,0xFF00FF;
  132. viewpoint 2,204,214,8,0x00FF00;
  133. set .@compass_check,0;
  134. break;
  135. case 3:
  136. mes "[Geffen Guide]";
  137. mes "Advances in sorcery and";
  138. mes "technology have allowed";
  139. mes "us to update our information";
  140. mes "system, enabling up to mark";
  141. mes "locations on your Mini-Map";
  142. mes "for easier navigation.";
  143. next;
  144. mes "[Geffen Guide]";
  145. mes "Your Mini-Map is located";
  146. mes "in the upper right corner";
  147. mes "of the screen. If you can't";
  148. mes "see it, press the Ctrl + Tab";
  149. mes "keys or click the ''Map'' button in your Basic Info Window.";
  150. next;
  151. mes "[Geffen Guide]";
  152. mes "On your Mini-Map,";
  153. mes "click on the ''+'' and ''-''";
  154. mes "symbols to zoom in and";
  155. mes "our of your Mini-Map. We";
  156. mes "hope you enjoy your travels";
  157. mes "here in the city of Geffen.";
  158. break;
  159. case 4:
  160. mes "[Geffen Guide]";
  161. mes "Alright, adventurer.";
  162. mes "I wish you safety on";
  163. mes "your journeys through";
  164. mes "the lands you may travel...";
  165. close2;
  166. set .@loop1,0;
  167. }
  168. }
  169. cutin "gef_soldier",255;
  170. end;
  171. }
  172. geffen,118,62,0 duplicate(GefGuide) Guide#2gef 705