guides_ama.txt 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. //===== eAthena Script =======================================
  2. //= Amatsu Guides
  3. //===== By: ==================================================
  4. //= MasterOfMuppets; L0ne_W0lf
  5. //===== Current Version: =====================================
  6. //= 1.3
  7. //===== Compatible With: =====================================
  8. //= eAthena SVN
  9. //===== Description: =========================================
  10. //= [Aegis Conversion]
  11. //= Guides for the City of Amatsu
  12. //===== Additional Comments: =================================
  13. //= 1.0 First version [MasterOfMuppets]
  14. //= 1.1 Removed Duplicates [Silent]
  15. //= 1.3 Rescripted to Aegis 10.3 standards. [L0ne_W0lf]
  16. //============================================================
  17. amatsu,207,89,3 script Amatsu Guide#ama 758,{
  18. mes "[Amachang]";
  19. mes "Welcome to Amatsu,";
  20. mes "the town of kind towners";
  21. mes "and beautiful cherry blossoms.";
  22. next;
  23. mes "[Amachang]";
  24. mes "I'm Amachang,";
  25. mes "the 13th Miss Amatsu.";
  26. mes "I will guide you about town";
  27. mes "as Miss Amatsu.";
  28. mes "Please tell me";
  29. mes "if you want to know something.";
  30. next;
  31. switch(select("Palace:Tool Shop:Weapon Shop:Bar")) {
  32. case 1:
  33. viewpoint 1,85,235,0,0xFF3355;
  34. mes "[Amachang]";
  35. mes "On the mini-map,";
  36. mes "go to ^FF3355+^000000";
  37. mes "to find the Palace.";
  38. mes "Have a good time";
  39. mes "in Amatsu.";
  40. close;
  41. case 2:
  42. viewpoint 1,96,118,1,0xCE6300;
  43. mes "[Amachang]";
  44. mes "On the mini-map,";
  45. mes "go to ^CE6300+^000000";
  46. mes "to find the Tool Shop.";
  47. mes "Have a good time";
  48. mes "in Amatsu.";
  49. close;
  50. case 3:
  51. viewpoint 1,132,117,2,0x55FF33;
  52. mes "[Amachang]";
  53. mes "On the mini-map,";
  54. mes "go to ^55FF33+^000000";
  55. mes "to find the Weapon Shop.";
  56. mes "Have a good time";
  57. mes "in Amatsu.";
  58. close;
  59. case 4:
  60. viewpoint 1,217,116,3,0x3355FF;
  61. mes "[Amachang]";
  62. mes "On the mini-map,";
  63. mes "go to ^3355FF+^000000";
  64. mes "to find the Bar.";
  65. mes "Have a good time";
  66. mes "in Amatsu.";
  67. close;
  68. }
  69. }
  70. amatsu,251,283,4 script Guide Man#2ama 767,{
  71. mes "[Guide Man]";
  72. mes "Welcome, tourist from Rune-Midgard.";
  73. mes "I'm the guide of";
  74. mes "our beautiful town, Amatsu.";
  75. next;
  76. mes "[Guide Man]";
  77. mes "What are you looking for?";
  78. next;
  79. switch(select("Palace:Tool Shop:Weapon Shop:Bar")) {
  80. case 1:
  81. viewpoint 1,85,235,0,0xFF3355;
  82. mes "[Guide Man]";
  83. mes "On the mini-map,";
  84. mes "go to ^FF3355+^000000";
  85. mes "to find the Palace.";
  86. mes "Have a good time";
  87. mes "in Amatsu.";
  88. close;
  89. case 2:
  90. viewpoint 1,96,118,1,0xCE6300;
  91. mes "[Guide Man]";
  92. mes "On the mini-map,";
  93. mes "go to ^CE6300+^000000";
  94. mes "to find the Tool Shop.";
  95. mes "Have a good time";
  96. mes "in Amatsu.";
  97. close;
  98. case 3:
  99. viewpoint 1,132,117,2,0x55FF33;
  100. mes "[Guide Man]";
  101. mes "On the mini-map,";
  102. mes "go to ^55FF33+^000000";
  103. mes "to find the Weapon Shop.";
  104. mes "Have a good time";
  105. mes "in Amatsu.";
  106. close;
  107. case 4:
  108. viewpoint 1,217,116,3,0x3355FF;
  109. mes "[Guide Man]";
  110. mes "On the mini-map,";
  111. mes "go to ^3355FF+^000000";
  112. mes "to find the Bar.";
  113. mes "Have a good time";
  114. mes "in Amatsu.";
  115. close;
  116. }
  117. }