guides_louyang.txt 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. //===== rAthena Script =======================================
  2. //= Louyang 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 Louyang
  12. //===== Additional Comments: =================================
  13. //= 1.0 First version, Renewal guide.
  14. //============================================================
  15. louyang,224,104,4 script Louyang Guide#01louyang 818,{
  16. mes "[Representative]";
  17. mes "Welcome to ^8B4513Louyang^000000,";
  18. mes "an ancient land with";
  19. mes "a history full of tales";
  20. mes "of bravery.";
  21. next;
  22. mes "[Representative]";
  23. mes "We now provide an ocean lane to accomodate foreign travelers and intercultural exchange from which all can benefit.";
  24. next;
  25. mes "[Representative]";
  26. mes "^8B4513Louyang^000000 is famous for";
  27. mes "its elaborate history, as well as specialties that are unique to this nation. Please take your time and enjoy your stay.";
  28. while (1) {
  29. next;
  30. switch(select("[ Dragon Castle ]:[ Doctor's Office ]:[ City Hall ]:[ Weapon Shop ]:[ Tool Shop ]:[ Tavern ]:[ Observatory ]:[ Return to Alberta ]:Remove Marks from Mini-Map:Cancel")) {
  31. case 1:
  32. mes "[Representative]";
  33. mes "The Dragon Castle is located at ^0A82FF+^000000. It is where all the nobles reside, including our lord.";
  34. mes "Since you're an outsider, I guess it would be appropriate for you to visit our lord first.";
  35. mes "Is there anything else I can do for you?";
  36. viewpoint 1,218,253,0,0x0A82FF;
  37. break;
  38. case 2:
  39. mes "[Representative]";
  40. mes "It's a famous ^AAFF00Doctor's Office^000000";
  41. mes "according to rumor it can cure all diseases. But I'm not sure if it's true or not.";
  42. mes "Is there anything else I can do for you?";
  43. viewpoint 1,261,93,1,0xAAFF00;
  44. break;
  45. case 3:
  46. mes "[Representative]";
  47. mes "We have a City Hall where the federal government operates.";
  48. mes "It is located at ^008080+^000000.";
  49. next;
  50. mes "[Representative]";
  51. mes "If you have any problems,";
  52. mes "you should talk with the";
  53. mes "employees there.";
  54. mes "Is there anything else I can do for you?";
  55. viewpoint 1,309,78,2,0x20B2AA;
  56. break;
  57. case 4:
  58. mes "[Representative]";
  59. mes "The Weapon Shop is located at ^55FF33+^000000.";
  60. next;
  61. mes "[Representative]";
  62. mes "You will see";
  63. mes "marvelous weapons forged";
  64. mes "by the well-experienced";
  65. mes "Blacksmiths of Louyang.";
  66. mes "Is there anything else I can do for you?";
  67. viewpoint 1,145,172,3,0xFF1493;
  68. break;
  69. case 5:
  70. mes "[Representative]";
  71. mes "The Tool Shop is located at ^3355FF+^000000.";
  72. next;
  73. mes "[Representative]";
  74. mes "Knowing your enemy";
  75. mes "is half the battle!";
  76. mes "It's also safer to prepare yourself than to be sorry later. Why don't you go check their supplies?";
  77. mes "Is there anything else I can do for you?";
  78. viewpoint 1,138,99,4,0xFF0000;
  79. break;
  80. case 6:
  81. mes "[Representative]";
  82. mes "When you get tired during your trip, I suggest that you visit the Tavern. It's located at ^00FF00+^000000.";
  83. next;
  84. mes "[Soldier]";
  85. mes "The Tavern is a good place";
  86. mes "to meet other tourists, as well as to hear of any news that may be helpful to know.";
  87. mes "Is there anything else I can do for you?";
  88. viewpoint 1,280,165,5,0xDAA520;
  89. break;
  90. case 7:
  91. mes "[Representative]";
  92. mes "You won't get a better view of the world than you can at the Observatory.";
  93. mes "It's a must see here.";
  94. mes "Is there anything else I can do for you?";
  95. viewpoint 1,136,245,6,0xD8BFD8;
  96. break;
  97. case 8:
  98. mes "[Representative]";
  99. mes "If you want to return to Alberta,";
  100. mes "find the ^00BFFFKGirl^000000 outside town on the docks.";
  101. mes "Is there anything else I can do for you?";
  102. viewpoint 1,218,22,7,0x00BFFF;
  103. break;
  104. case 9:
  105. mes "[Representative]";
  106. mes "I'll remove all marks from your mini-map.";
  107. mes "Is there anything else I can do for you?";
  108. viewpoint 2,1,1,0,0xFFFFFF;
  109. viewpoint 2,1,1,1,0xFFFFFF;
  110. viewpoint 2,1,1,2,0xFFFFFF;
  111. viewpoint 2,1,1,3,0xFFFFFF;
  112. viewpoint 2,1,1,4,0xFFFFFF;
  113. viewpoint 2,1,1,5,0xFFFFFF;
  114. viewpoint 2,1,1,6,0xFFFFFF;
  115. viewpoint 2,1,1,7,0xFFFFFF;
  116. break;
  117. case 10:
  118. mes "[Representative]";
  119. mes "Enjoy your trip~!";
  120. close;
  121. }
  122. }
  123. }