guides_louyang.txt 4.5 KB

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