guides_hu.txt 5.0 KB

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