guides_nif.txt 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. //===== eAthena Script =======================================
  2. //= Niflheim Guide
  3. //===== By: ==================================================
  4. //= eAthena Team
  5. //===== Current Version: =====================================
  6. //= 1.2
  7. //===== Compatible With: =====================================
  8. //= eAthena 1.0 +
  9. //===== Description: =========================================
  10. //=
  11. //===== Additional Comments: =================================
  12. //= 1.1 Fixed location command format [Lupus]
  13. //= 1.2 Optimized, updated common guide names [Lupus]
  14. //============================================================
  15. //=====================================================================================
  16. niflheim.gat,186,190,5 script Wandering Man 798,{
  17. mes "[Wandering Man]";
  18. mes "Why are you in this scary city? I guess you lost your way too, heh.";
  19. mes "I was attracted here by the tall trees, but still can't find my way out after so long...";
  20. next;
  21. mes "[Wandering Man]";
  22. mes "But instead i have become familiar with the village surroundings,";
  23. mes "perhaps it may be useful for escaping sometimes.";
  24. next;
  25. menu "Enquire locations",-,"Wipe indications",L_MENU_2,"Cancel",L_end;
  26. mes "[Wandering Man]";
  27. mes "Where do you want to know about?";
  28. next;
  29. menu "Witch's Hut",-,"Equipment Shop",M_item,"Weapon Shop",M_weapon,"Inn",M_hotel,"Cancel",L_cancel;
  30. viewpoint 1,255,194,1,0xFF3366;
  31. mes "[Wandering Man]";
  32. mes "In Niflheim lives a terrible witch,";
  33. mes "you'll see her house right ^FF3366there^000000,";
  34. mes "it was so scary i fled right after going in!";
  35. close;
  36. M_item:
  37. viewpoint 1,219,198,2,0xCC6600;
  38. mes "[Wandering Man]";
  39. mes "The equipment shop should be over ^CC6600here^000000";
  40. mes "they sell several items not available to the outside world.";
  41. close;
  42. M_weapon:
  43. viewpoint 1,219,170,3,0x66FF33;
  44. mes "[Wandering Man]";
  45. mes "The weapon shop should be over ^66FF33here^000000";
  46. mes "they sell several items not available to the outside world.";
  47. close;
  48. M_hotel:
  49. viewpoint 1,189,210,4,0x3366FF;
  50. mes "[Wandering Man]";
  51. mes "^3366FFThat^000000 would be the inn,";
  52. mes "occasionally the spirits throw a party in there.";
  53. close;
  54. L_cancel:
  55. mes "[Wandering Man]";
  56. mes "To remove all indications of the minimap";
  57. mes "come back and talk to me again.";
  58. close;
  59. L_MENU_2:
  60. viewpoint 2,255,194,1,0xFF3366;
  61. viewpoint 2,219,198,2,0xCC6600;
  62. viewpoint 2,219,170,3,0x66FF33;
  63. viewpoint 2,189,210,4,0x3366FF;
  64. mes "[Wandering Man]";
  65. mes "I removed all the indications,";
  66. mes "If you still need any directions, come back and talk to me again.";
  67. close;
  68. L_end:
  69. mes "[Wandering Man]";
  70. mes "Wandering around by yourself is dangerous...";
  71. mes "please take care.";
  72. close;
  73. }