guides_moscovia.txt 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. //===== rAthena Script =======================================
  2. //= Moscovia 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 Moscovia
  12. //===== Additional Comments: =================================
  13. //= 1.0 First version, Renewal guide.
  14. //============================================================
  15. moscovia,226,191,4 script Moscovia Guide#02mosc 959,{
  16. mes "[Moscovia Guide]";
  17. mes "A paradise on the sea";
  18. mes "beautiful wave and warm sunshine";
  19. mes "^8B4513Moscovia^000000 is waitting for you";
  20. mes "welcome to come here.";
  21. mes "I'm supporting to offer information about here.";
  22. mes "if you want to ask anything just feel free tell me.";
  23. while (1) {
  24. next;
  25. switch(select("[ Palace ]:[ Chapel ]:[ Weapon Shop ]:[ Armor Shop ]:[ Tool Shop ]:[ Inn ]:[ Return to Alberta ]:Remove Marks from Mini-Map:Cancel")) {
  26. case 1:
  27. mes "[Moscovia Guide]";
  28. mes "In the ^006400Palace^000000 you will find our Lord the Czar and other servants.";
  29. mes "Is there anything else I can do for you?";
  30. viewpoint 1,255,140,0,0x0A82FF;
  31. break;
  32. case 2:
  33. mes "[Moscovia Guide]";
  34. mes "The ^008080Chapel^000000 is located here.";
  35. mes "Is there anything else I can do for you?";
  36. viewpoint 1,253,179,1,0xAAFF00;
  37. break;
  38. case 3:
  39. mes "[Moscovia Guide]";
  40. mes "You can buy weapons from the best craftsmen in Moscovia if you go to ^FF1493Weapon Shop^000000.";
  41. mes "Is there anything else I can do for you?";
  42. viewpoint 1,186,191,2,0x008080;
  43. break;
  44. case 4:
  45. mes "[Moscovia Guide]" ;
  46. mes "You will find only the best gear at the Moscovia ^8B4513Armor Shop^000000.";
  47. mes "Is there anything else I can do for you?";
  48. viewpoint 1,204,169,3,0xB200FF;
  49. break;
  50. case 5:
  51. mes "[Moscovia Guide]";
  52. mes "The ^FF1493Tool Shop^000000 is located just south from the center of town.";
  53. mes "You can find all sorts of things you need for your travels.";
  54. mes "Is there anything else I can do for you?";
  55. viewpoint 1,221,176,4,0xFF1493;
  56. break;
  57. case 6:
  58. mes "[Moscovia Guide]";
  59. mes "The Inn 'Sticky Herb Tree' is just north from the center of town.";
  60. mes "If you need to rest, there is no better place to stay.";
  61. mes "Is there anything else I can do for you?";
  62. viewpoint 1,227,206,5,0x8B4513;
  63. break;
  64. case 7:
  65. mes "[Moscovia Guide]";
  66. mes "You can go back to Alberta at the docks.";
  67. mes "Is there anything else I can do for you?";
  68. viewpoint 1,166,53,6,0x00BFFF;
  69. break;
  70. case 8:
  71. mes "[Moscovia Guide]";
  72. mes "I'll remove all marks from your mini-map.";
  73. mes "Is there anything else I can do for you?";
  74. viewpoint 2,1,1,0,0xFFFFFF;
  75. viewpoint 2,1,1,1,0xFFFFFF;
  76. viewpoint 2,1,1,2,0xFFFFFF;
  77. viewpoint 2,1,1,3,0xFFFFFF;
  78. viewpoint 2,1,1,4,0xFFFFFF;
  79. viewpoint 2,1,1,5,0xFFFFFF;
  80. viewpoint 2,1,1,6,0xFFFFFF;
  81. break;
  82. case 9:
  83. mes "[Moscovia Guide]";
  84. mes "Enjoy your trip~!";
  85. close;
  86. }
  87. }
  88. }