guides_nif.txt 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. //===== eAthena Script =======================================
  2. //= Niflheim Guide
  3. //===== By: ==================================================
  4. //= eAthena Team; L0ne_W0lf
  5. //===== Current Version: =====================================
  6. //= 1.3
  7. //===== Compatible With: =====================================
  8. //= eAthena SVN
  9. //===== Description: =========================================
  10. //= [Aegis Conversion]
  11. //= Guides for the City of Niflheim
  12. //===== Additional Comments: =================================
  13. //= 1.1 Fixed location command format [Lupus]
  14. //= 1.2 Optimized, updated common guide names [Lupus]
  15. //= 1.3 Rescripted to Aegis 10.3 standards. [L0ne_W0lf]
  16. //============================================================
  17. niflheim,107,156,6 script Roaming Man#nif 798,{
  18. mes "[Ricael]";
  19. mes "You must be lost...";
  20. mes "Why would anyone come";
  21. mes "to this horrid, dreadful";
  22. mes "place on purpose...??";
  23. next;
  24. mes "[Ricael]";
  25. mes "Ever since I stumbled fell down into this giant tree, I've suffered endlessly here. I've wasted years in sadness, being unable to escape Niflheim.";
  26. next;
  27. mes "[Ricael]";
  28. mes "But in searching for an";
  29. mes "escape route, I probably know";
  30. mes "this town better than anyone";
  31. mes "else. I guess knowing the";
  32. mes "layout might help you escape";
  33. mes "if it weren't so futile.";
  34. next;
  35. switch(select("Ask building locations.:Remove marks on the mini-map.:Cancel.")) {
  36. case 1:
  37. mes "[Ricael]";
  38. mes "So, um, which place do you want to know about?";
  39. next;
  40. switch(select("Witch's castle:Tool shop:Weapon shop:Pub:Cancel")) {
  41. case 1:
  42. mes "[Ricael]";
  43. mes "There. I made a ^FF3355+^000000 mark";
  44. mes "on your mini-map so that you can";
  45. mes "go to the castle where that";
  46. mes "creepy witch lives.";
  47. next;
  48. mes "[Ricael]";
  49. mes "I went there once, but then I";
  50. mes "ran away and decided that I";
  51. mes "should try to not die as much";
  52. mes "as possible. That's pretty";
  53. mes "much my life goal here in";
  54. mes "Niflheim.";
  55. viewpoint 1,253,191,2,0xFF3355;
  56. break;
  57. case 2:
  58. mes "[Ricael]";
  59. mes "The Tool shop is located";
  60. mes "at the ^CE6300+^000000 mark I made";
  61. mes "on your mini-map.";
  62. next;
  63. mes "[Ricael]";
  64. mes "They sell some unique items that";
  65. mes "you cannot find outside of this";
  66. mes "town. Of course, they weren't so";
  67. mes "special once I realized no";
  68. mes "Potion can ease the pain I feel.";
  69. mes "...I wish I was in prison.";
  70. Emotion e_wah;
  71. viewpoint 1,217,196,3,0xCE6300;
  72. break;
  73. case 3:
  74. mes "[Ricael]";
  75. mes "The Weapon shop is located";
  76. mes "at the ^55FF33+^000000 mark I made";
  77. mes "on your mini-map.";
  78. next;
  79. mes "[Ricael]";
  80. mes "They sell some unique items which";
  81. mes "you cannot find outside of this";
  82. mes "town... Of course, fighting";
  83. mes "the monsters here will just";
  84. mes "make them angrier. You may as";
  85. mes "well let them eat you.";
  86. Emotion e_wah;
  87. viewpoint 1,216,171,4,0x55FF33;
  88. break;
  89. case 4:
  90. mes "[Ricael]";
  91. mes "The Pub is located at";
  92. mes "the ^3355FF+^000000 mark I've made";
  93. mes "on your mini-map.";
  94. next;
  95. mes "[Ricael]";
  96. mes "Sometimes I see dead people in the";
  97. mes "Pub enjoying themselves, having a";
  98. mes "good time. I used to be able to";
  99. mes "have fun once, but now all I feel";
  100. mes "is the cold tingle of loneliness";
  101. mes "and despair...every waking moment.";
  102. viewpoint 1,189,207,5,0x3355FF;
  103. break;
  104. case 5:
  105. mes "[Ricael]";
  106. mes "If you want to remove the location";
  107. mes "marks from your mini-map, please";
  108. mes "choose 'Remove marks on the";
  109. mes "mini-map' from the menu.";
  110. }
  111. break;
  112. case 2:
  113. viewpoint 2,253,191,2,0xFF3355;
  114. viewpoint 2,217,196,3,0xCE6300;
  115. viewpoint 2,216,171,4,0x55FF33;
  116. viewpoint 2,189,207,5,0x3355FF;
  117. mes "[Ricael]";
  118. mes "I removed the location marks from";
  119. mes "your mini-map. Go ahead and ask";
  120. mes "me if you want to mark the";
  121. mes "building locations again. It";
  122. mes "helps me ignore the depression";
  123. mes "that gnaws at me constantly.";
  124. break;
  125. case 3:
  126. mes "[Ricael]";
  127. mes "It's not a good idea to search";
  128. mes "Niflheim by yourself...";
  129. mes "At least try to be careful.";
  130. break;
  131. }
  132. close;
  133. }