guides_umb.txt 3.1 KB

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