guides_moscovia.txt 2.9 KB

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