guides_umb.txt 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. //===== eAthena Script =======================================
  2. //= Umbala Guides
  3. //===== By: ==================================================
  4. //= Dizzy
  5. //= Translated by Celest
  6. //===== Current Version: =====================================
  7. //= 1.1
  8. //===== Compatible With: =====================================
  9. //= eAthena 1.0 +
  10. //===== Description: =========================================
  11. //=
  12. //===== Additional Comments: =================================
  13. //= 1.1 Fixed location command format [Lupus]
  14. //============================================================
  15. //=====================================================================================
  16. //umbala.gat,174,147,5 script Umbalian Guide 789,{
  17. // mes "[Umbalian Guide]";
  18. // mes "-Under Development-";
  19. // close;
  20. //}
  21. // Umbala tour guide
  22. //===========================================================================
  23. umbala.gat,128,94,3 script Ricard 702,{
  24. mes "[Ricard]";
  25. mes "This sure is an odd place,";
  26. mes "perhaps due to the fact that it hasn't been developed,";
  27. mes "the roads here can be very perilous.";
  28. next;
  29. mes "[Ricard]";
  30. mes "Good thing i've already been here ";
  31. mes "for quite some time, so i know the details of the village quite well,";
  32. mes "You may ask me for directions if you want.";
  33. next;
  34. menu "View buildings",-,"Clear indications",L_MENU_2,"Cancel",L_end1;
  35. L_MENU_1:
  36. mes "[Ricard]";
  37. mes "Where would you want to know about?";
  38. next;
  39. menu "Village Chieftain's house",L_room1,"Village Shaman's house",L_room2,"Weapon shop",L_room3,"Equipment shop",L_room4,"Bungee Jumping Spot",L_room5,"Cancel",L_end2;
  40. L_room1:
  41. mes "[Ricard]";
  42. mes "The chieftain lives ^FF0000here^000000,";
  43. mes "only he understands the languages of outsiders,";
  44. mes "perhaps you should see him first.";
  45. viewpoint 1,68,251,1,0xFF0000;
  46. close;
  47. L_room2:
  48. mes "[Ricard]";
  49. mes "The shaman is known to possess mysterious powers,";
  50. mes "his house would be right ^996600here^000000,";
  51. mes "it is said that he can manipulate the elements of the Earth easily!";
  52. viewpoint 1,218,187,2,0x996600;
  53. close;
  54. L_room3:
  55. mes "[Ricard]";
  56. mes "The weapon shop is ^009933over there^000000,";
  57. mes "because of threats from the outside world,";
  58. mes "they have been stocking up on";
  59. mes "all kinds of weapons.";
  60. viewpoint 1,125,155,3,0x009933;
  61. close;
  62. L_room4:
  63. mes "[Ricard]";
  64. mes "^3333FFThat^000000 would be the equipment shop,";
  65. mes "they sell all types of useful equipment";
  66. mes "you should have a look there before continueing your travels.";
  67. viewpoint 1,136,127,4,0x3333FF;
  68. close;
  69. L_room5:
  70. mes "[Ricard]";
  71. mes "In Umbala there is a 'Bungee Jumping Spot' not seen anywhere else in the world";
  72. mes "as you can see ^66CC33over here^000000,";
  73. mes "you can try it out if you're feeling brave enough.";
  74. viewpoint 1,138,198,5,0x66CC33;
  75. close;
  76. L_end2:
  77. mes "[Ricard]";
  78. mes "To remove all indications of the minimap";
  79. mes "come back and talk to me again.";
  80. close;
  81. L_MENU_2:
  82. viewpoint 2,68,251,1,0xFF0000;
  83. viewpoint 2,218,187,2,0x996600;
  84. viewpoint 2,125,155,3,0x009933;
  85. viewpoint 2,136,127,4,0x3333FF;
  86. viewpoint 2,138,198,5,0x66CC33;
  87. mes "[Ricard]";
  88. mes "I removed all the indications,";
  89. mes "If you still need any directions, come back and talk to me again.";
  90. close;
  91. L_end1:
  92. mes "[Ricard]";
  93. mes "Exploring around to know the paths better is fun, but do be careful.";
  94. close;
  95. }