guides_lutie.txt 2.4 KB

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