guides_mosk.txt 2.8 KB

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