guides_umb.txt 3.3 KB

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