guides_moscovia.txt 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. //===== rAthena Script =======================================
  2. //= Moscovia Guides
  3. //===== By: ==================================================
  4. //= Kisuka
  5. //===== Current Version: =====================================
  6. //= 1.0
  7. //===== Compatible With: =====================================
  8. //= rAthena Project
  9. //===== Description: =========================================
  10. //= [Official Conversion]
  11. //= Guides for the town of Moscovia.
  12. //===== Additional Comments: =================================
  13. //= 1.0 First Version. [Kisuka]
  14. //============================================================
  15. moscovia,161,76,4 script Moscovia Guide#mosk 959,{
  16. mes "[Moscovia Guide]";
  17. mes "Welcome to Moscovia";
  18. mes "Here is the paradise spreading on";
  19. mes "the endless seas";
  20. mes "You'll be happy with the beautiful";
  21. mes "scenery and the sunlight!";
  22. next;
  23. mes "[Moscovia Guide]";
  24. mes "I was sent from Moscovia Palace";
  25. mes "to guide tourists and to give them";
  26. mes "information on this town.";
  27. mes "If you have some questions, please ask me.";
  28. next;
  29. switch(select("Ask where you can go.:Delete all the marks on the mini-map.:Cancel.")) {
  30. case 1:
  31. mes "[Moscovia Guide]";
  32. mes "Where would you like to go?";
  33. next;
  34. switch(select("The Palace:Armor Shop:Tool Shop:An Inn:Cancel")) {
  35. case 1:
  36. mes "[Moscovia Guide]";
  37. mes "The Palace can be found ^ff0000+^000000 at the";
  38. mes "end of the North sea from";
  39. mes "Rune-Midgarts.";
  40. mes "There resides our Lord the Czar of";
  41. mes "Moscovia and his retainers.";
  42. close2;
  43. viewpoint 1,257,138,1,0xFF0000;
  44. end;
  45. case 2:
  46. viewpoint 1,185,187,2,0x00FF00;
  47. mes "[Moscovia Guide]";
  48. mes "The Armor Shop is located at the";
  49. mes "southwest corner of town..";
  50. mes "You can buy armor made by the best";
  51. mes "craftsmen of Moscovia there.";
  52. close;
  53. case 3:
  54. mes "[Moscovia Guide]";
  55. mes "The Tool Shop is located just south";
  56. mes "from the center of town.";
  57. mes "You can find all sorts of things";
  58. mes "you need for your travels.";
  59. close2;
  60. viewpoint 1,223,174,3,0x00FF00;
  61. end;
  62. case 4:
  63. mes "[Moscovia Guide]";
  64. mes "The Inn 'Sticky Herb Tree' is just";
  65. mes "north from the center of town.";
  66. mes "If you need to rest, there is no";
  67. mes "better place to stay.";
  68. close2;
  69. viewpoint 1,229,208,4,0x3355FF;
  70. end;
  71. case 5:
  72. close;
  73. }
  74. case 2:
  75. mes "[Moscovia Guide]";
  76. mes "I've deleted all marks on the mini-map.";
  77. mes "Whenever you'd like to put marks";
  78. mes "there, you can ask me.";
  79. viewpoint 2,257,138,1,0xFF0000;
  80. viewpoint 2,185,187,2,0x00FF00;
  81. viewpoint 2,223,174,3,0x00FF00;
  82. viewpoint 2,229,208,4,0x3355FF;
  83. close;
  84. case 3:
  85. mes "[Moscovia Guide]";
  86. mes "It'd be great to walk about alone.";
  87. mes "Take care.";
  88. close;
  89. }
  90. }