guides_amatsu.txt 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. //===== rAthena Script =======================================
  2. //= Amatsu Guide
  3. //===== By: ==================================================
  4. //= L0ne_W0lf
  5. //===== Current Version: =====================================
  6. //= 1.0
  7. //===== Compatible With: =====================================
  8. //= rAthena SVN
  9. //===== Description: =========================================
  10. //= [Aegis Conversion]
  11. //= Guide for the city of Amatsu
  12. //===== Additional Comments: =================================
  13. //= 1.0 First version, Renewal guide.
  14. //============================================================
  15. amatsu,202,91,3 script Amatsu Guide#amatsu 758,{
  16. mes "[Amachang]";
  17. mes "Welcome to ^8B4513Amatsu^000000,";
  18. mes "the town of kind towners";
  19. mes "and beautiful cherry blossoms.";
  20. next;
  21. mes "[Amachang]";
  22. mes "I'm Amachang,";
  23. mes "the 13th Miss Amatsu.";
  24. mes "I will guide you about town";
  25. mes "as Miss Amatsu.";
  26. mes "Please tell me";
  27. mes "if you want to know something.";
  28. while (1) {
  29. next;
  30. switch(select("[ Kafra Employee ]:[ Bar ]:[ Weapon Dealer ]:[ Tool Dealer ]:[ Amatsu Palace ]:[ Chef Assistant ]:[ Ninja Guild Building ]:[ Sea Captain ]:Remove Marks from Mini-Map:Cancel")) {
  31. case 1:
  32. mes "[Amachang]";
  33. mes "The ^0000FFKafra Employee^000000 is";
  34. mes "marked on your mini-map.";
  35. mes "Is there anything else I can do for you?";
  36. viewpoint 1,102,149,0,0x0A82FF;
  37. break;
  38. case 2:
  39. mes "[Amachang]";
  40. mes "The ^006400Bar^000000 is";
  41. mes "marked on your mini-map.";
  42. mes "Is there anything else I can do for you?";
  43. viewpoint 1,215,116,1,0xAAFF00;
  44. break;
  45. case 3:
  46. mes "[Amachang]";
  47. mes "The ^008080Weapon Dealer^000000 is";
  48. mes "marked on your mini-map.";
  49. mes "Is there anything else I can do for you?";
  50. viewpoint 1,129,117,2,0x008080;
  51. break;
  52. case 4:
  53. mes "[Amachang]";
  54. mes "The ^FF1493Tool Dealer^000000 is";
  55. mes "marked on your mini-map.";
  56. mes "Is there anything else I can do for you?";
  57. viewpoint 1,97,117,3,0xFF1493;
  58. break;
  59. case 5:
  60. mes "[Amachang]";
  61. mes "The ^8B4513Amatsu Palace^000000 is";
  62. mes "marked on your mini-map.";
  63. mes "Is there anything else I can do for you?";
  64. viewpoint 1,87,235,4,0x8B4513;
  65. break;
  66. case 6:
  67. mes "[Amachang]";
  68. mes "The ^8A2BE2Chef Assistant^000000 is";
  69. mes "marked on your mini-map.";
  70. mes "Is there anything else I can do for you?";
  71. viewpoint 1,206,150,5,0x8A2BE2;
  72. break;
  73. case 7:
  74. mes "[Amachang]";
  75. mes "The ^4B0082Ninja Guild Building^000000 is";
  76. mes "marked on your mini-map.";
  77. mes "Is there anything else I can do for you?";
  78. viewpoint 1,148,137,6,0x4B0082;
  79. break;
  80. case 8:
  81. mes "[Amachang]";
  82. mes "The ^00BFFFSea Captain^000000 is";
  83. mes "marked on your mini-map.";
  84. mes "Is there anything else I can do for you?";
  85. viewpoint 1,195,79,7,0x00BFFF;
  86. break;
  87. case 9:
  88. mes "[Amachang]";
  89. mes "I'll remove all marks from your mini-map.";
  90. mes "Is there anything else I can do for you?";
  91. viewpoint 2,1,1,0,0xFFFFFF;
  92. viewpoint 2,1,1,1,0xFFFFFF;
  93. viewpoint 2,1,1,2,0xFFFFFF;
  94. viewpoint 2,1,1,3,0xFFFFFF;
  95. viewpoint 2,1,1,4,0xFFFFFF;
  96. viewpoint 2,1,1,5,0xFFFFFF;
  97. viewpoint 2,1,1,6,0xFFFFFF;
  98. viewpoint 2,1,1,7,0xFFFFFF;
  99. break;
  100. case 10:
  101. mes "[Amachang]";
  102. mes "Enjoy your trip~!!";
  103. close;
  104. }
  105. }
  106. }