guides_hu.txt 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. //===== eAthena Script =======================================
  2. //= Guard of Hugel City
  3. //===== By: ==================================================
  4. //= erKURITA
  5. //===== Current Version: =====================================
  6. //= 1.0a
  7. //===== Compatible With: =====================================
  8. //= eAthena 1.0
  9. //===== Description: =========================================
  10. //= Guard/Guide NPC of City of Hugel.
  11. //===== Additional Comments: =================================
  12. //= 1.0 Started the script. [erKURITA]
  13. //============================================================
  14. hugel.gat,98,57,3 script Old Lady 863,{
  15. mes "[Old Lady]";
  16. mes "Welcome to Hugel, the Power Source City.";
  17. next;
  18. mes "[Old Lady]";
  19. mes "I am here to help you find your way. Please feel free to speak to me anytime you need help.";
  20. M_Menu:
  21. next;
  22. menu "View Buildings",-, "Notice",M_2, "Cancel",M_End;
  23. mes "[Old Lady]";
  24. mes "Do you want me to leave indications on the Mini-Map?";
  25. next;
  26. menu "No Thanks",-,"Yes Please",sM_1b;
  27. set @COMPASS_CHECK,0;
  28. goto L_Cont;
  29. sM_1b:
  30. set @COMPASS_CHECK,1;
  31. L_Cont:
  32. mes "[Old Lady]";
  33. mes "Please choose a building to view.";
  34. next;
  35. sM_Menu:
  36. menu "Church",-,
  37. "Hotel",M_1_2,
  38. "Pub",M_1_3,
  39. "Airship",M_1_4,
  40. "Weapon/Armor Shop",M_1_5,
  41. "Grocery/Tool shop",M_1_6,
  42. "Firecrackers Shop",M_1_7,
  43. "Hunter Guild",M_1_8a,
  44. "^000066Poring Track 1^000000",M_1_9,
  45. "^000066Poring Track 2^000000",M_1_10,
  46. "^000066Bingo House^000000",M_1_11,
  47. "Wipe all indications from mini-map",M_1_8,
  48. "Cancel", M_End;
  49. mes "[Old Lady]";
  50. mes "'The 'Church' here in Hugel will grant your wedding's day a lot of happiness.";
  51. mes "It's located at the east of Hugel, south of the Airship";
  52. viewpoint 1,157,112,1,0xFF5555;
  53. goto sL_Wipe;
  54. M_1_2:
  55. mes "[Old Lady]";
  56. mes "The 'Hotel' is a few steps close here. Just go north through this road.";
  57. mes "It is a good place to rest and replenish your hp and sp.";
  58. viewpoint 1,101,78,2,0x44FF44;
  59. goto sL_Wipe;
  60. M_1_3:
  61. mes "[Old Lady]";
  62. mes "The 'Pub' is east of here, go and pass by for some rest! It is a great place to meet people and have fun.";
  63. viewpoint 1,126,65,3,0x5555FF;
  64. goto sL_Wipe;
  65. M_1_4:
  66. mes "[Old Lady]";
  67. mes "Head over to the 'Airship' to fly to other cities.";
  68. viewpoint 1,189,166,4,0xFF00FF;
  69. goto sL_Wipe;
  70. M_1_5:
  71. mes "[Old Lady]";
  72. mes "The 'Weapon/Armor shop' is the place to go when you need something to defend yourself from the other monsters";
  73. viewpoint 1,72,155,5,0xFF00FF;
  74. goto sL_Wipe;
  75. M_1_6:
  76. mes "[Old Lady]";
  77. mes "The 'Grocery/Tool shop' is the place to go when you need to stock up on things like potions and fly-wings.";
  78. viewpoint 1,92,164,6,0xF0C40F;
  79. goto sL_Wipe;
  80. M_1_7:
  81. mes "[Old Lady]";
  82. mes "The 'Firecracker shop' will provide you with some flashy fireworks to lit up your night";
  83. viewpoint 1,94,104,7,0xFF8000;
  84. goto sL_Wipe;
  85. M_1_8a:
  86. mes "[Old Lady]";
  87. mes "The 'Hunter Guild' is located at the northeast of Hugel. Sharpen your eyes!";
  88. viewpoint 1,208,225,7,0xFF8000;
  89. goto sL_Wipe;
  90. M_1_9:
  91. mes "[Old Lady]";
  92. mes "The '^000066Poring Track Nº1^000000' is new and exciting entertaintment, make sure to check it!";
  93. viewpoint 1,58,72,7,0xFF8000;
  94. goto sL_Wipe;
  95. M_1_10:
  96. mes "[Old Lady]";
  97. mes "The '^000066Poring Track Nº2^000000' is new and exciting entertaintment, make sure to check it!";
  98. viewpoint 1,62,68,7,0xFF8000;
  99. goto sL_Wipe;
  100. M_1_11:
  101. mes "[Old Lady]";
  102. mes "The 'Bingo House' is located at the northwest of Hugel. Lay your bet ladies and gentlements!";
  103. viewpoint 1,57,207,7,0xFF8000;
  104. goto sL_Wipe;
  105. M_1_8:
  106. set @COMPASS_CHECK, 2;
  107. sL_Wipe:
  108. if(@COMPASS_CHECK != 2) next; // avoids a double 'next' when 'wipe indications' is chosen
  109. if(@COMPASS_CHECK == 1) goto sM_Menu;
  110. viewpoint 2,157,112,1,0xFF5555;
  111. viewpoint 2,101,78,2,0x44FF44;
  112. viewpoint 2,126,65,3,0x5555FF;
  113. viewpoint 2,189,166,4,0xFF00FF;
  114. viewpoint 2,72,155,5,0xFF00FF;
  115. viewpoint 2,92,164,6,0xF0C40F;
  116. viewpoint 2,94,104,7,0xFF8000;
  117. viewpoint 2,208,225,7,0xFF8000;
  118. viewpoint 2,58,72,7,0xFF8000;
  119. viewpoint 2,62,68,7,0xFF8000;
  120. viewpoint 2,57,207,7,0xFF8000;
  121. if (@COMPASS_CHECK == 0) goto sM_Menu;
  122. mes "[Old Lady]";
  123. mes "All indications have been removed";
  124. close;
  125. M_2:
  126. mes "[Old Lady]";
  127. mes "We upgraded the Location Guide to the Newest Digital Style. We hope you like this gorgeous new system.";
  128. next;
  129. mes "[Old Lady]";
  130. mes "Don't forget to refer to the Mini-Map on the Upper-Right corner of your screen.";
  131. next;
  132. mes "[Old Lady]";
  133. mes "If you can't see the Mini-Map, just hit ^0000ff'ctrl+tab'^000000 or Click the ^0000ff'map'^000000 button in the Basic Information Window";
  134. mes "Remeber to use the ^ff0000+,-^000000 buttons to adjust the map to your liking.";
  135. goto M_Menu;
  136. M_End:
  137. mes "[Old Lady]";
  138. mes "Have a nice day, deary~";
  139. close;
  140. }