guides_juno.txt 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. //===== rAthena Script =======================================
  2. //= Juno Guides
  3. //===== By: ==================================================
  4. //= KitsuneStarwind, usul, kobra_k88; L0ne_W0lf
  5. //===== Current Version: =====================================
  6. //= 1.7
  7. //===== Compatible With: =====================================
  8. //= rAthena Project
  9. //===== Description: =========================================
  10. //= [Official Conversion]
  11. //= Guides for the City of Juno
  12. //===== Additional Comments: =================================
  13. //= Edited Miss Yoon text. Added town soldiers by usul. Edited town soldiers
  14. //= and added map location option for them. [kobra_k88]
  15. //= 1.1 Changed sprites and cutins to Schwarzwald Republic ones
  16. //= 1.2 Optimized, updated common guide names [Lupus]
  17. //= 1.3 Updated the mini map localization function. [Musashiden]
  18. //= 1.4 Juno Guides are now up to date according to iRO. [Musashiden]
  19. //= 1.5 Removed Duplicates [Silent].
  20. //= 1.6 Changed one of the Juno soldier's sprite. [Musashiden]
  21. //= 1.7 Rescripted to official 10.3 standards. [L0ne_W0lf]
  22. //============================================================
  23. yuno,153,47,4 script Juno Guide#yuno 700,{
  24. mes "[Ms. Yoon]";
  25. mes "A place that takes the vision of the future, and gives it form in the present. Welcome to";
  26. mes "the city of Juno!";
  27. next;
  28. switch(select("Armory:Tool Shop:Sage Castle (Sage Job Change Place):Street of Book Stores:Juphero Plaza:Library of the Republic:Schweicherbil Magic Academy:Monster Museum:Forge:Airport:End Conversation")) {
  29. case 1:
  30. viewpoint 1,120,138,0,0xFF3355;
  31. mes "[Ms. Yoon]";
  32. mes "Please look";
  33. mes "at the mini map.";
  34. mes "^FF3355+^000000 -> Armory";
  35. mes "Thank you,";
  36. mes "have a good day.";
  37. close;
  38. case 2:
  39. viewpoint 1,193,142,1,0x3355FF;
  40. mes "[Ms. Yoon]";
  41. mes "Please look";
  42. mes "at the mini map.";
  43. mes "^3355FF+^000000 -> Tool Shop";
  44. mes "Thank you,";
  45. mes "have a good day.";
  46. close;
  47. case 3:
  48. viewpoint 1,90,318,2,0x33FF55;
  49. mes "[Ms. Yoon]";
  50. mes "Please look";
  51. mes "at the mini map.";
  52. mes "^33FF55+^000000 -> Sage Castle";
  53. mes "( Sage Job Change Place )";
  54. mes "Thank you, have a good day.";
  55. close;
  56. case 4:
  57. viewpoint 1,257,102,3,0xFF3355;
  58. mes "[Ms. Yoon]";
  59. mes "Please look";
  60. mes "at the mini map.";
  61. mes "^FF3355+^000000 -> Street of Book Stores";
  62. mes "Thank you, have a good day.";
  63. close;
  64. case 5:
  65. viewpoint 1,157,170,4,0x3355FF;
  66. mes "[Ms. Yoon]";
  67. mes "Please look";
  68. mes "at the mini map.";
  69. mes "^3355FF+^000000 -> Juphero Plaza";
  70. mes "Thank you,";
  71. mes "have a good day.";
  72. close;
  73. case 6:
  74. viewpoint 1,336,204,5,0x33FF55;
  75. mes "[Ms. Yoon]";
  76. mes "Please look";
  77. mes "at the mini map.";
  78. mes "^33FF55+^000000 -> Library of the Republic";
  79. mes "Thank you, have a good day.";
  80. close;
  81. case 7:
  82. viewpoint 1,323,281,6,0xFF3355;
  83. mes "[Ms. Yoon]";
  84. mes "Please look at the mini map.";
  85. mes "^FF3355+^000000 -> Schweicherbil Magic Academy";
  86. mes "Thank you, have a good day.";
  87. close;
  88. case 8:
  89. viewpoint 1,278,288,7,0x3355FF;
  90. mes "[Ms. Yoon]";
  91. mes "Please look at the mini map.";
  92. mes "^3355FF+^000000 -> Monster Museum";
  93. mes "Thank you, have a good day.";
  94. close;
  95. case 9:
  96. viewpoint 1,120,138,8,0xFF3355;
  97. mes "[Ms. Yoon]";
  98. mes "Please look at the mini map.";
  99. mes "^FF3355+^000000 -> Forge";
  100. mes "The forge is located underneath Armory.";
  101. mes "Thank you, have a good day.";
  102. close;
  103. case 10:
  104. viewpoint 1,53,214,9,0xFF3355;
  105. mes "[Ms. Yoon]";
  106. mes "Please look at the mini map.";
  107. mes "^FF3355+^000000 -> Airport";
  108. mes "Thank you, have a good day.";
  109. close;
  110. case 11:
  111. mes "[Ms. Yoon]";
  112. mes "A great city of wise men.";
  113. mes "A city of Knowledge!";
  114. mes "Welcome to Juno.";
  115. close;
  116. }
  117. }