guides_lutie.txt 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. //===== rAthena Script =======================================
  2. //= Lutie 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 Lutie.
  12. //===== Additional Comments: =================================
  13. //= 1.0 First version, Renewal guide.
  14. //= 1.1 Fixed and optimized. [Euphy]
  15. //============================================================
  16. xmas,140,137,3 script Lutie Guide#xmas 717,{
  17. mes "[Lutie Guide]";
  18. mes "Welcome to ^8B4513Lutie^000000,";
  19. mes "the Snow Village.";
  20. mes "Do you need help navigating the village?";
  21. while (1) {
  22. next;
  23. switch(select("[ Gift Shop ]:[ Church ]:[ Weapon & Armor Shop ]:[ Tool Shop ]:[ Santa's House ]:[ Toy Factory ]:Remove Marks from Mini-Map:Cancel")) {
  24. case 1:
  25. callsub L_Mark,"^008080Gift Shop";
  26. viewpoint 1,172,131,2,0x008080;
  27. break;
  28. case 2:
  29. callsub L_Mark,"^006400Church";
  30. viewpoint 1,104,287,1,0xAAFF00;
  31. break;
  32. case 3:
  33. callsub L_Mark,"^FF1493Weapon & Armor Shop";
  34. viewpoint 1,171,158,3,0xFF1493;
  35. break;
  36. case 4:
  37. callsub L_Mark,"^8B4513Tool Shop";
  38. viewpoint 1,122,131,4,0x8B4513;
  39. break;
  40. case 5:
  41. callsub L_Mark,"^B9062FSanta's House",1;
  42. viewpoint 1,149,237,5,0x9400D3;
  43. break;
  44. case 6:
  45. callsub L_Mark,"^9400D3Toy Factory";
  46. viewpoint 1,143,312,6,0xFF0000;
  47. break;
  48. case 7:
  49. mes "[Lutie Guide]";
  50. mes "Sure, I'll remove all marks from your mini-map.";
  51. mes "Is there anything else I can do for you?";
  52. viewpoint 2,1,1,0,0xFFFFFF;
  53. viewpoint 2,1,1,1,0xFFFFFF;
  54. viewpoint 2,1,1,2,0xFFFFFF;
  55. viewpoint 2,1,1,3,0xFFFFFF;
  56. viewpoint 2,1,1,4,0xFFFFFF;
  57. viewpoint 2,1,1,5,0xFFFFFF;
  58. viewpoint 2,1,1,6,0xFFFFFF;
  59. break;
  60. case 8:
  61. mes "[Lutie Guide]";
  62. mes "Be safe on your travels.";
  63. close;
  64. }
  65. }
  66. end;
  67. L_Mark:
  68. mes "[Lutie Guide]";
  69. mes "Let me mark the location of "+((getarg(1,0))?"":"the");
  70. mes getarg(0)+"^000000";
  71. mes "on your mini-map.";
  72. mes "Would you like to check any other locations?";
  73. return;
  74. }