guides_lutie.txt 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. //===== eAthena Script =======================================
  2. //= Lutie Guide
  3. //===== By: ==================================================
  4. //= L0ne_W0lf
  5. //===== Current Version: =====================================
  6. //= 1.0
  7. //===== Compatible With: =====================================
  8. //= eAthena SVN
  9. //===== Description: =========================================
  10. //= [Aegis Conversion]
  11. //= Guide for the city of Lutie
  12. //===== Additional Comments: =================================
  13. //= 1.0 First version, Renewal guide.
  14. //============================================================
  15. xmas,140,137,3 script Lutie Guide#xmas 717,{
  16. mes "[Lutie Guide]";
  17. mes "Welcome to ^8B4513Lutie^000000,";
  18. mes "the Snow Village.";
  19. mes "Do you need help navigating the village?" ;
  20. while (1) {
  21. next;
  22. switch(select("[ Gift Shop ]:[ Church ]:[ Weapon & Armor Shop ]:[ Tool Shop ]:[ Santa's House ]:[ Toy Factory ]:Remove Marks from Mini-Map:Cancel")) {
  23. case 1:
  24. mes "[Lutie Guide]";
  25. mes "Let me mark the location of the";
  26. mes "^00808Gift Shop^000000";
  27. mes "on your mini-map.";
  28. mes "Would you like to check any other locations?";
  29. viewpoint 1,172,131,2,0x008080;
  30. break;
  31. case 2:
  32. mes "[Lutie Guide]";
  33. mes "Let me mark the location of the";
  34. mes "^006400Church^000000";
  35. mes "on your mini-map.";
  36. mes "Would you like to check any other locations?";
  37. viewpoint 1,104,287,1,0xAAFF00;
  38. break;
  39. case 3:
  40. mes "[Lutie Guide]";
  41. mes "Let me mark the location of the";
  42. mes "^FF1493Weapon & Armor Shop^000000";
  43. mes "on your mini-map.";
  44. mes "Would you like to check any other locations?";
  45. viewpoint 1,171,158,3,0xFF1493;
  46. break;
  47. case 4:
  48. mes "[Lutie Guide]";
  49. mes "Let me mark the location of the";
  50. mes "^8B4513Tool Shop^000000";
  51. mes "on your mini-map.";
  52. mes "Would you like to check any other locations?";
  53. viewpoint 1,122,131,4,0x8B4513;
  54. break;
  55. case 5:
  56. mes "[Lutie Guide]";
  57. mes "Let me mark the location of the";
  58. mes "^9400D3Toy Factory^000000";
  59. mes "on your mini-map.";
  60. mes "Would you like to check any other locations?";
  61. viewpoint 1,149,237,5,0x9400D3;
  62. break;
  63. case 6:
  64. mes "[Lutie Guide]";
  65. mes "Let me mark the location of";
  66. mes "^B9062FSanta's House^000000";
  67. mes "on your mini-map.";
  68. mes "Would you like to check any other locations?";
  69. viewpoint 1,143,312,6,0xFF0000;
  70. break;
  71. case 7:
  72. mes "[Lutie Guide]";
  73. mes "Sure, I'll remove all marks from your mini-map.";
  74. mes "Is there anything else I can do for you?";
  75. viewpoint 2,1,1,0,0xFFFFFF;
  76. viewpoint 2,1,1,1,0xFFFFFF;
  77. viewpoint 2,1,1,2,0xFFFFFF;
  78. viewpoint 2,1,1,3,0xFFFFFF;
  79. viewpoint 2,1,1,4,0xFFFFFF;
  80. viewpoint 2,1,1,5,0xFFFFFF;
  81. viewpoint 2,1,1,6,0xFFFFFF;
  82. break;
  83. case 8:
  84. mes "[Lutie Guide]";
  85. mes "Be safe on your travels.";
  86. close;
  87. }
  88. }
  89. }