guides_umbala.txt 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. //===== rAthena Script =======================================
  2. //= Umbala Guides
  3. //===== By: ==================================================
  4. //= L0ne_W0lf
  5. //===== Current Version: =====================================
  6. //= 1.1
  7. //===== Compatible With: =====================================
  8. //= rAthena Project
  9. //===== Description: =========================================
  10. //= [Official Conversion]
  11. //= Guides for the city of Umbala.
  12. //===== Additional Comments: =================================
  13. //= 1.0 First version, Renewal guides.
  14. //= 1.1 Navigation system update. [Euphy]
  15. //============================================================
  16. umbala,128,94,3 script Umbala Guide#01umbala::GuideUmbala 702,{
  17. mes "[Umbala Guide]";
  18. mes "Welcome to ^8B4513Umbala^000000,";
  19. mes "the Village of the Utan Tribe.";
  20. next;
  21. mes "[Umbala Guide]";
  22. mes "Since I have been exploring here for several months.";
  23. mes "I am familiar with this area's geography and the points of interest in this village.";
  24. mes "Do you need help navigating the village?";
  25. F_Navi("[Umbala Guide]");
  26. while (1) {
  27. next;
  28. switch(select("[ Kafra Employee ]:[ Chief's House ]:[ Shaman's House ]:[ Weapon Shop ]:[ Tool Shop ]:[ Bungee Jump Area ]:[ Tree of Yggdrasil ]:Remove Marks from Mini-Map:Cancel")) {
  29. case 1:
  30. mes "[Umbala Guide]";
  31. mes "Let me mark the location of the";
  32. mes "^0000FFKafra Employee^000000";
  33. mes "on your mini-map.";
  34. mes "Would you like to check any other locations?";
  35. viewpoint 1,87,160,0,0x0A82FF;
  36. break;
  37. case 2:
  38. mes "[Umbala Guide]";
  39. mes "Only the "+F_Navi("Chief","umbala,68,251","^006400")+" knows the language of the outside world.";
  40. mes "So you'd better visit him before anything else.";
  41. mes "Would you like to check any other locations?";
  42. viewpoint 1,68,251,1,0xAAFF00;
  43. break;
  44. case 3:
  45. mes "[Umbala Guide]";
  46. mes "The "+F_Navi("Shaman","umbala,219,188","^008080")+" has some sort of mystic power.";
  47. mes "People say she can create rough enchanted stones, and divide a pure enchanted stone into rough ones.";
  48. mes "Would you like to check any other locations?";
  49. viewpoint 1,219,188,2,0x008080;
  50. break;
  51. case 4:
  52. mes "[Umbala Guide]";
  53. mes "The "+F_Navi("Weapon Shop","umbala,125,155","^FF1493")+" inside Umbala";
  54. mes "supplies the weapons";
  55. mes "for defending against their enemies.";
  56. mes "Would you like to check any other locations?";
  57. viewpoint 1,125,155,3,0xFF1493;
  58. break;
  59. case 5:
  60. mes "[Umbala Guide]";
  61. mes "There are many useful things for";
  62. mes "traveling in the "+F_Navi("Tool Shop","umbala,136,127","^8B4513")+" in Umbala.";
  63. mes "Would you like to check any other locations?";
  64. viewpoint 1,136,127,4,0x8B4513;
  65. break;
  66. case 6:
  67. mes "[Umbala Guide]";
  68. mes "Umbala has a unique locale called";
  69. mes "the "+F_Navi("Bungee Jump Area","umbala,138,198")+".";
  70. mes "If you're interested in testing";
  71. mes "your courage, why don't you try it.";
  72. mes "Would you like to check any other locations?";
  73. viewpoint 1,221,176,5,0x9400D3;
  74. break;
  75. case 7:
  76. mes "[Umbala Guide]";
  77. mes "There's the "+F_Navi("Tree of Yggdrasil","umbala,107,284")+" in the northern part of town.";
  78. mes "You should pay it a visit since that's a place I recommend when you visit Umbala.";
  79. mes "Would you like to check any other locations?";
  80. viewpoint 1,107,284,6,0xA52A2A;
  81. break;
  82. case 8:
  83. mes "[Umbala Guide]";
  84. mes "Sure, I'll remove all marks from your mini-map.";
  85. mes "Is there anything else I can do for you?";
  86. viewpoint 2,1,1,0,0xFFFFFF;
  87. viewpoint 2,1,1,1,0xFFFFFF;
  88. viewpoint 2,1,1,2,0xFFFFFF;
  89. viewpoint 2,1,1,3,0xFFFFFF;
  90. viewpoint 2,1,1,4,0xFFFFFF;
  91. viewpoint 2,1,1,5,0xFFFFFF;
  92. viewpoint 2,1,1,6,0xFFFFFF;
  93. break;
  94. case 9:
  95. mes "[Umbala Guide]";
  96. mes "Be safe on your travels.";
  97. close;
  98. }
  99. }
  100. }
  101. umbala,99,158,3 duplicate(GuideUmbala) Umbala Guide#02umbala 702