guides_um.txt 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. //===== eAthena Script =======================================
  2. //= Umbala Guides
  3. //===== By: ==================================================
  4. //= Dizzy, Translated by Celest; L0ne_W0lf
  5. //===== Current Version: =====================================
  6. //= 1.5
  7. //===== Compatible With: =====================================
  8. //= eAthena SVN
  9. //===== Description: =========================================
  10. //= Guide for the City of Umbala
  11. //===== Additional Comments: =================================
  12. //= 1.1 Fixed location command format [Lupus]
  13. //= 1.2 Optimized, updated common guide names [Lupus]
  14. //= 1.4 Fitted the many lines into 1 or 2, and corrected some typos [erKURITA]
  15. //= 1.5 Rescripted to Aegis 10.3 standards. [L0ne_W0lf]
  16. //= 1.6 Corrected activating ontouch. [L0ne_W0lf]
  17. //============================================================
  18. umbala,128,94,4 script Adventurer#um 702,{
  19. mes "[Adventurer]";
  20. mes "This is a very strange place...";
  21. mes "It's underdeveloped, and there";
  22. mes "are a number of complex, winding paths...";
  23. next;
  24. mes "[Adventurer]";
  25. mes "However, since I have been here";
  26. mes "for months, I am familiar with";
  27. mes "this area's geography and points";
  28. mes "of interest in this village.";
  29. mes "You're welcome to ask me about the";
  30. mes "locations of buildings.";
  31. next;
  32. switch(select("Locations of buildings.:Remove marks on the mini map.:Quit.")) {
  33. case 1:
  34. mes "[Adventurer]";
  35. mes "So, which one do you want to check?";
  36. next;
  37. switch(select("Chief's House:Shaman's House:Weapon Shop:Tool Shop:Bungee Jump Place:Cancel")) {
  38. case 1:
  39. mes "[Adventurer]";
  40. mes "I have made a ^FF3355+^000000 mark";
  41. mes "on your mini map.";
  42. next;
  43. mes "[Adventurer]";
  44. mes "Only the chief knows the language";
  45. mes "of the outside world. So you'd";
  46. mes "better visit him before anything else.";
  47. viewpoint 1,66,250,2,0xFF3355;
  48. break;
  49. case 2:
  50. mes "[Adventurer]";
  51. mes "I have made a ^CE6300+^000000 mark";
  52. mes "on your mini map.";
  53. next;
  54. mes "[Adventurer]";
  55. mes "The Utan Shaman has some";
  56. mes "sort of mystic power...";
  57. mes "People say she can create rough";
  58. mes "enchanted stones, and divide a";
  59. mes "pure enchanted stone into rough ones.";
  60. viewpoint 1,217,186,3,0xCE6300;
  61. break;
  62. case 3:
  63. mes "[Adventurer]";
  64. mes "I have made a ^55FF33+^000000 mark";
  65. mes "on your mini map.";
  66. next;
  67. mes "[Adventurer]";
  68. mes "The Utans are usually well armed";
  69. mes "in preparation for attacks from";
  70. mes "their enemies. Apparently, they";
  71. mes "have been attacked from the outside many times in the past.";
  72. viewpoint 1,126,154,4,0x55FF33;
  73. break;
  74. case 4:
  75. mes "[Adventurer]";
  76. mes "I have made a ^3355FF+^000000 mark";
  77. mes "on your mini map.";
  78. next;
  79. mes "[Adventurer]";
  80. mes "There are many useful things for";
  81. mes "traveling in the Tool Shop, so why don't you go look around?";
  82. viewpoint 1,136,127,5,0x3355FF;
  83. break;
  84. case 5:
  85. mes "[Adventurer]";
  86. mes "I have made a ^00FF00+^000000 mark";
  87. mes "on your mini map.";
  88. next;
  89. mes "[Adventurer]";
  90. mes "Umbala has a unique locale called";
  91. mes "the 'Bungee Jump Place'.";
  92. mes "If you're interested in testing";
  93. mes "your courage, why don't you go";
  94. mes "and partake in this Utan";
  95. mes "ritual yourself?";
  96. viewpoint 1,139,198,6,0x00FF00;
  97. break;
  98. case 6:
  99. mes "[Adventurer]";
  100. mes "If you want to remove the location";
  101. mes "marks on your mini map, please";
  102. mes "choose 'Remove marks on the mini map' menu.";
  103. }
  104. break;
  105. case 2:
  106. viewpoint 2,66,250,2,0xFF3355;
  107. viewpoint 2,217,186,3,0xCE6300;
  108. viewpoint 2,126,154,4,0x55FF33;
  109. viewpoint 2,136,127,5,0x3355FF;
  110. viewpoint 2,139,198,6,0x00FF00;
  111. mes "[Adventurer]";
  112. mes "I removed all the marks from your";
  113. mes "mini map. Feel free to ask me";
  114. mes "again if you want me to mark building locations.";
  115. break;
  116. case 3:
  117. mes "[Adventurer]";
  118. mes "It's fun to learn Utan culture on your own. Take care.";
  119. break;
  120. }
  121. close;
  122. }