guides_umbala.txt 3.5 KB

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