LakoshaMaera.lua 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395
  1. --[[
  2. Script Name : SpawnScripts/Nettleville/LakoshaMaera.lua
  3. Script Purpose : Lakosha Maera <Kerra Mentor>
  4. Script Author : Scatman
  5. Script Date : 2009.08.21
  6. Script Notes :
  7. --]]
  8. -- Race ID's
  9. local KERRA = 11
  10. -- Quest ID's
  11. local RITUAL_OF_HEALTH = 300 -- was 37
  12. local CURIOUS_FINDINGS = 301 -- was 38
  13. local REQUIRED_COMPONENTS = 302 -- was 39
  14. local UNFORTUNATE_MISTAKES = 303 -- was 40
  15. local TO_THE_SOURCE = 304 -- was 41
  16. function spawn(NPC)
  17. ProvidesQuest(NPC, RITUAL_OF_HEALTH)
  18. ProvidesQuest(NPC, CURIOUS_FINDINGS)
  19. ProvidesQuest(NPC, UNFORTUNATE_MISTAKES)
  20. ProvidesQuest(NPC, TO_THE_SOURCE)
  21. end
  22. function respawn(NPC)
  23. spawn(NPC)
  24. end
  25. function hailed(NPC, Spawn)
  26. FaceTarget(NPC, Spawn)
  27. conversation = CreateConversation()
  28. if HasCompletedQuest(Spawn, RITUAL_OF_HEALTH) then
  29. if HasCompletedQuest(Spawn, CURIOUS_FINDINGS) then
  30. if HasCompletedQuest(Spawn, REQUIRED_COMPONENTS) then
  31. if HasCompletedQuest(Spawn, UNFORTUNATE_MISTAKES) then
  32. if HasCompletedQuest(Spawn, TO_THE_SOURCE) then
  33. elseif HasQuest(Spawn, TO_THE_SOURCE) then
  34. SpokenWithLithYet(NPC, Spawn)
  35. else
  36. StoppedRitualYetYes(NPC, Spawn)
  37. end
  38. elseif HasQuest(Spawn, UNFORTUNATE_MISTAKES) then
  39. if GetQuestStep(Spawn, UNFORTUNATE_MISTAKES) == 1 then
  40. StoppedRitualYetNo(NPC, Spawn)
  41. elseif GetQuestStep(Spawn, UNFORTUNATE_MISTAKES) == 2 then
  42. StoppedRitualYetYes(NPC, Spawn)
  43. end
  44. else
  45. FindOutWhatWasInSoilYes(NPC, Spawn)
  46. end
  47. elseif HasQuest(Spawn, REQUIRED_COMPONENTS) then
  48. if GetQuestStep(Spawn, REQUIRED_COMPONENTS) >= 1 and GetQuestStep(Spawn, REQUIRED_COMPONENTS) <= 3 then
  49. FindOutWhatWasInSoilNo(NPC, Spawn)
  50. elseif GetQuestStep(Spawn, REQUIRED_COMPONENTS) == 5 then
  51. FindOutWhatWasInSoilYes(NPC, Spawn)
  52. end
  53. else
  54. FindOutWhatWasInSoilNo(NPC, Spawn)
  55. end
  56. elseif HasQuest(Spawn, CURIOUS_FINDINGS) then
  57. FindOutWhatWasInSoilNo(NPC, Spawn)
  58. else
  59. GetSoilYetYes(NPC, Spawn)
  60. end
  61. elseif HasQuest(Spawn, RITUAL_OF_HEALTH) then
  62. if GetQuestStep(Spawn, RITUAL_OF_HEALTH) == 4 then
  63. GetSoilYetYes(NPC, Spawn)
  64. else
  65. GetSoilYetNo(NPC, Spawn)
  66. end
  67. else
  68. if GetRace(Spawn) == KERRA then
  69. DoYouSeekDirection(NPC, Spawn)
  70. else
  71. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/lakosha_maera/qey_village01/qst_lakosha_maera_notkerra_4ac0f123.mp3", "I am sorry, but I am not in a mood to speak.", "no", 2967268605, 2864900763, Spawn)
  72. end
  73. end
  74. end
  75. --------------------------------------------------------------------------------------------------------------------
  76. -- QUEST 1
  77. --------------------------------------------------------------------------------------------------------------------
  78. function DoYouSeekDirection(NPC, Spawn)
  79. FaceTarget(NPC, Spawn)
  80. conversation = CreateConversation()
  81. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/lakosha_maera/qey_village01/quests/lakosha_maera/lakosha_maera001.mp3", "", "", 3108156461, 1871862413, Spawn)
  82. AddConversationOption(conversation, "What do you mean?", "dlg_15_1")
  83. StartConversation(conversation, NPC, Spawn, "Greetings. Do you seek direction?")
  84. end
  85. function dlg_15_1(NPC, Spawn)
  86. FaceTarget(NPC, Spawn)
  87. conversation = CreateConversation()
  88. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/lakosha_maera/qey_village01/quests/lakosha_maera/lakosha_maera002.mp3", "", "", 216566417, 180925659, Spawn)
  89. AddConversationOption(conversation, "How do rituals help?", "dlg_15_2")
  90. StartConversation(conversation, NPC, Spawn, "Direction. Purpose. Meaning. I have seen our people struggle with it from time to time, some unaware. I help, with words and friendship, but mostly with rituals.")
  91. end
  92. function dlg_15_2(NPC, Spawn)
  93. FaceTarget(NPC, Spawn)
  94. conversation = CreateConversation()
  95. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/lakosha_maera/qey_village01/quests/lakosha_maera/lakosha_maera003.mp3", "", "", 3025633439, 1456244576, Spawn)
  96. AddConversationOption(conversation, "What kind of rituals do you teach?", "dlg_15_3")
  97. StartConversation(conversation, NPC, Spawn, "They give us something to hold on to that we know others are also holding on to. It helps, and we can use that help as little or as much as we need to.")
  98. end
  99. function dlg_15_3(NPC, Spawn)
  100. FaceTarget(NPC, Spawn)
  101. conversation = CreateConversation()
  102. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/lakosha_maera/qey_village01/quests/lakosha_maera/lakosha_maera004.mp3", "", "", 1100012524, 2857852328, Spawn)
  103. AddConversationOption(conversation, "I am interested in learning the ritual.", "dlg_15_4")
  104. AddConversationOption(conversation, "I would prefer a more challenging task.", "dlg_16_4")
  105. StartConversation(conversation, NPC, Spawn, "All kinds, old and new. They have helped our people--well, some of our people--for ages. I could teach a simple one to you if you like. It may or may not help you, but it is easy to learn and almost anyone can do it. If a ritual does not appeal to you, and you wish something more challenging, I believe I know where you can find that as well.")
  106. end
  107. function dlg_15_4(NPC, Spawn)
  108. FaceTarget(NPC, Spawn)
  109. conversation = CreateConversation()
  110. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/lakosha_maera/qey_village01/quests/lakosha_maera/lakosha_maera006.mp3", "", "", 960364760, 2384294721, Spawn)
  111. AddConversationOption(conversation, "How much dirt do I need?", "OfferQuest1")
  112. StartConversation(conversation, NPC, Spawn, "I am pleased to hear that. The Ritual of Hearth is simple, and it is a means of becoming acquainted with one's home. It requires only the gathering of soil from three separate places where you dwell. In Nettleville the most appropriate places are the tree just south of here--at the western end of the Market Row, the tree near the entrance to the Peat Bog, and around the gate that leads into Qeynos.")
  113. end
  114. function dlg_16_4(NPC, Spawn)
  115. FaceTarget(NPC, Spawn)
  116. conversation = CreateConversation()
  117. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/lakosha_maera/qey_village01/quests/lakosha_maera/lakosha_maera005.mp3", "", "", 3531677818, 1764879381, Spawn)
  118. AddConversationOption(conversation, "I will seek him out.")
  119. AddConversationOption(conversation, "On second though, I would like to learn the ritual.", "dlg_15_4")
  120. StartConversation(conversation, NPC, Spawn, "That task I cannot provide, but I can put you on a path to find it. In the Peat Bog, a friend of mine has been doing some research. His name is Nareh Lith, and he is always accepting of proposed help.")
  121. end
  122. function GetSoilYetNo(NPC, Spawn)
  123. FaceTarget(NPC, Spawn)
  124. conversation = CreateConversation()
  125. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/lakosha_maera/qey_village01/quests/lakosha_maera/lakosha_maera008.mp3", "", "", 3730752906, 155519371, Spawn)
  126. AddConversationOption(conversation, "No, I have not.")
  127. StartConversation(conversation, NPC, Spawn, "Have you collected the soil?")
  128. end
  129. function GetSoilYetYes(NPC, Spawn)
  130. FaceTarget(NPC, Spawn)
  131. conversation = CreateConversation()
  132. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/lakosha_maera/qey_village01/quests/lakosha_maera/lakosha_maera008.mp3", "", "", 3730752906, 155519371, Spawn)
  133. AddConversationOption(conversation, "Yes, I have.", "dlg_19_1")
  134. StartConversation(conversation, NPC, Spawn, "Have you collected the soil?")
  135. end
  136. function dlg_19_1(NPC, Spawn)
  137. FaceTarget(NPC, Spawn)
  138. conversation = CreateConversation()
  139. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/lakosha_maera/qey_village01/quests/lakosha_maera/lakosha_maera009.mp3", "", "", 1477384079, 55827537, Spawn)
  140. AddConversationOption(conversation, "Ok. [let the soil pass between your fingers]", "dlg_19_2")
  141. StartConversation(conversation, NPC, Spawn, "Good. Now, let it pass between your fingers and fall to the ground at your feet.")
  142. end
  143. function dlg_19_2(NPC, Spawn)
  144. FaceTarget(NPC, Spawn)
  145. conversation = CreateConversation()
  146. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/lakosha_maera/qey_village01/quests/lakosha_maera/lakosha_maera010.mp3", "", "", 3892927672, 816906452, Spawn)
  147. AddConversationOption(conversation, "I do not feel any different.", "dlg_19_3")
  148. AddConversationOption(conversation, "I feel more at home already!", "dlg_19_3")
  149. StartConversation(conversation, NPC, Spawn, "Good, good... the ritual is complete. Nettleville now knows you, and perhaps you now know it.")
  150. end
  151. function OfferQuest1(NPC, Spawn)
  152. FaceTarget(NPC, Spawn)
  153. OfferQuest(NPC, Spawn, RITUAL_OF_HEALTH)
  154. end
  155. --------------------------------------------------------------------------------------------------------------------
  156. -- QUEST 2
  157. --------------------------------------------------------------------------------------------------------------------
  158. function dlg_19_3(NPC, Spawn)
  159. if HasQuest(Spawn, RITUAL_OF_HEALTH) then
  160. SetStepComplete(Spawn, RITUAL_OF_HEALTH, 4)
  161. end
  162. FaceTarget(NPC, Spawn)
  163. conversation = CreateConversation()
  164. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/lakosha_maera/qey_village01/quests/lakosha_maera/lakosha_maera011.mp3", "", "", 877184864, 471092130, Spawn)
  165. AddConversationOption(conversation, "Yes, I did.", "dlg_19_4")
  166. StartConversation(conversation, NPC, Spawn, "For some the change is instant. For others it takes more time. Take this coin, it too is part of a ritual. This one of welcoming. Hm, did you collect this soil from where I specified?")
  167. end
  168. function dlg_19_4(NPC, Spawn)
  169. FaceTarget(NPC, Spawn)
  170. conversation = CreateConversation()
  171. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/lakosha_maera/qey_village01/quests/lakosha_maera/lakosha_maera012.mp3", "", "", 365783891, 519851629, Spawn)
  172. AddConversationOption(conversation, "What do you need?", "dlg_19_5")
  173. AddConversationOption(conversation, "Sorry, I can't right now.")
  174. StartConversation(conversation, NPC, Spawn, "That is interesting. This soil is not the proper color. Hmm, and it smells a little odd. Imolau, this is a little concerning. This soil looks like someone was in the middle of the Pa'Rok, but there are elements here that do not belong. It may be nothing, but it also may be something. Would you do me a favor?")
  175. end
  176. function dlg_19_5(NPC, Spawn)
  177. FaceTarget(NPC, Spawn)
  178. conversation = CreateConversation()
  179. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/lakosha_maera/qey_village01/quests/lakosha_maera/lakosha_maera013.mp3", "", "", 172847039, 638167001, Spawn)
  180. AddConversationOption(conversation, "I will do that now.", "OfferQuest2")
  181. StartConversation(conversation, NPC, Spawn, "Could you take some of this soil to the Spiritist? Laharn Rahai is his name, you can find him just northeast of the armor shop here in Nettleville. Ask him if he can find out what is in the soil.")
  182. end
  183. function FindOutWhatWasInSoilNo(NPC, Spawn)
  184. FaceTarget(NPC, Spawn)
  185. conversation = CreateConversation()
  186. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/lakosha_maera/qey_village01/quests/lakosha_maera/lakosha_maera014.mp3", "", "", 1143283618, 2442308330, Spawn)
  187. AddConversationOption(conversation, "Not yet.")
  188. StartConversation(conversation, NPC, Spawn, "Did the spiritist find out what was in the soil?")
  189. end
  190. function OfferQuest2(NPC, Spawn)
  191. FaceTarget(NPC, Spawn)
  192. OfferQuest(NPC, Spawn, CURIOUS_FINDINGS)
  193. end
  194. --------------------------------------------------------------------------------------------------------------------
  195. -- QUEST 3
  196. --------------------------------------------------------------------------------------------------------------------
  197. function FindOutWhatWasInSoilYes(NPC, Spawn)
  198. FaceTarget(NPC, Spawn)
  199. conversation = CreateConversation()
  200. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/lakosha_maera/qey_village01/quests/lakosha_maera/lakosha_maera014.mp3", "", "", 1143283618, 2442308330, Spawn)
  201. AddConversationOption(conversation, "Yes.", "dlg_28_1")
  202. StartConversation(conversation, NPC, Spawn, "Did the spiritist find out what was in the soil?")
  203. end
  204. function dlg_28_1(NPC, Spawn)
  205. FaceTarget(NPC, Spawn)
  206. conversation = CreateConversation()
  207. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/lakosha_maera/qey_village01/quests/lakosha_maera/lakosha_maera015.mp3", "", "", 681420516, 1462428671, Spawn)
  208. AddConversationOption(conversation, "Laharn first sent me to the alchemists to attempt to enlist their help. They refused, stating that they were too busy.", "dlg_28_2")
  209. StartConversation(conversation, NPC, Spawn, "Tell me what happened.")
  210. end
  211. function dlg_28_2(NPC, Spawn)
  212. FaceTarget(NPC, Spawn)
  213. conversation = CreateConversation()
  214. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/lakosha_maera/qey_village01/quests/lakosha_maera/lakosha_maera016.mp3", "", "", 1395658399, 725264089, Spawn)
  215. AddConversationOption(conversation, "After I gathered the components for Laharn, he performed the test. He is very worried. He says the ritual is corrupted, but that there is one final stage needed to complete it.", "dlg_28_3")
  216. StartConversation(conversation, NPC, Spawn, "No surprise there.")
  217. end
  218. function dlg_28_3(NPC, Spawn)
  219. FaceTarget(NPC, Spawn)
  220. conversation = CreateConversation()
  221. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/lakosha_maera/qey_village01/quests/lakosha_maera/lakosha_maera017.mp3", "", "", 3652032020, 1710878793, Spawn)
  222. AddConversationOption(conversation, "And beyond that Laharn says there may be danger, to the spirit or the person performing the ritual.", "dlg_28_4")
  223. StartConversation(conversation, NPC, Spawn, "That stage will be a waste.")
  224. end
  225. function dlg_28_4(NPC, Spawn)
  226. SetStepComplete(Spawn, REQUIRED_COMPONENTS, 5)
  227. FaceTarget(NPC, Spawn)
  228. conversation = CreateConversation()
  229. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/lakosha_maera/qey_village01/quests/lakosha_maera/lakosha_maera018.mp3", "", "", 777539162, 2279868143, Spawn)
  230. AddConversationOption(conversation, "I can.", "dlg_28_5")
  231. StartConversation(conversation, NPC, Spawn, "Then it must be stopped. You must return to the three places from which you gathered soil and find the person who is performing this ritual, they will be at one of them. Can you do this?")
  232. end
  233. --------------------------------------------------------------------------------------------------------------------
  234. -- QUEST 4
  235. --------------------------------------------------------------------------------------------------------------------
  236. function dlg_28_5(NPC, Spawn)
  237. FaceTarget(NPC, Spawn)
  238. conversation = CreateConversation()
  239. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/lakosha_maera/qey_village01/quests/lakosha_maera/lakosha_maera019.mp3", "", "", 972178161, 3123309728, Spawn)
  240. AddConversationOption(conversation, "I remember.", "OfferQuest4")
  241. StartConversation(conversation, NPC, Spawn, "Good. In case you forgot, you gathered the soil at the tree on the western end of the Market Row, the tree near the entrance to the Peat Bog, and near the gates that lead into Qeynos.")
  242. end
  243. function OfferQuest4(NPC, Spawn)
  244. FaceTarget(NPC, Spawn)
  245. OfferQuest(NPC, Spawn, UNFORTUNATE_MISTAKES)
  246. end
  247. function dlg_29_1(NPC, Spawn)
  248. FaceTarget(NPC, Spawn)
  249. conversation = CreateConversation()
  250. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/lakosha_maera/qey_village01/quests/lakosha_maera/lakosha_maera015.mp3", "", "", 681420516, 1462428671, Spawn)
  251. AddConversationOption(conversation, "Laharn first sent me to the alchemists to attempt to enlist their help. They refused, stating that they were too busy.", "dlg_29_2")
  252. StartConversation(conversation, NPC, Spawn, "Tell me what happened.")
  253. end
  254. function StoppedRitualYetNo(NPC, Spawn)
  255. FaceTarget(NPC, Spawn)
  256. conversation = CreateConversation()
  257. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/lakosha_maera/qey_village01/quests/lakosha_maera/lakosha_maera020.mp3", "", "", 3049124346, 1314797650, Spawn)
  258. AddConversationOption(conversation, "No, not yet.")
  259. StartConversation(conversation, NPC, Spawn, "Have you stopped the ritual?")
  260. end
  261. function StoppedRitualYetYes(NPC, Spawn)
  262. FaceTarget(NPC, Spawn)
  263. conversation = CreateConversation()
  264. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/lakosha_maera/qey_village01/quests/lakosha_maera/lakosha_maera020.mp3", "", "", 3049124346, 1314797650, Spawn)
  265. AddConversationOption(conversation, "I was too late, the ritual was completed.", "dlg_34_1")
  266. StartConversation(conversation, NPC, Spawn, "Have you stopped the ritual?")
  267. end
  268. function dlg_34_1(NPC, Spawn)
  269. FaceTarget(NPC, Spawn)
  270. conversation = CreateConversation()
  271. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/lakosha_maera/qey_village01/quests/lakosha_maera/lakosha_maera021.mp3", "", "", 1097663315, 806264705, Spawn)
  272. AddConversationOption(conversation, "His name was Ralkesh Orto. I met him near the entrance to the Peat Bog. He had finished the Pa'Rok earlier. He came back after feeling no better off. When he and I were both there some sort of spirit attacked.", "dlg_34_2")
  273. StartConversation(conversation, NPC, Spawn, "I feared we would be too late. Do you know who performed the ritual? He may be in danger.")
  274. end
  275. function dlg_34_2(NPC, Spawn)
  276. FaceTarget(NPC, Spawn)
  277. conversation = CreateConversation()
  278. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/lakosha_maera/qey_village01/quests/lakosha_maera/lakosha_maera022.mp3", "", "", 4078309873, 3485008964, Spawn)
  279. AddConversationOption(conversation, "We are both fine. I fought the spirit, it left. Ralkesh will find Laharn and see what he can do to reattempt the ritual, properly.", "dlg_34_3")
  280. StartConversation(conversation, NPC, Spawn, "You look all right, how is he?")
  281. end
  282. function dlg_34_3(NPC, Spawn)
  283. SetStepComplete(Spawn, UNFORTUNATE_MISTAKES, 2)
  284. FaceTarget(NPC, Spawn)
  285. conversation = CreateConversation()
  286. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/lakosha_maera/qey_village01/quests/lakosha_maera/lakosha_maera023.mp3", "", "", 366740379, 2790792055, Spawn)
  287. AddConversationOption(conversation, "Ralkesh said he got the soil he used from the Peat Bog.", "dlg_34_4")
  288. StartConversation(conversation, NPC, Spawn, "I wonder why it went so wrong.")
  289. end
  290. ---------------------------------------------------------------------------------------------------------------------
  291. -- QUEST 5
  292. ---------------------------------------------------------------------------------------------------------------------
  293. function dlg_34_4(NPC, Spawn)
  294. FaceTarget(NPC, Spawn)
  295. conversation = CreateConversation()
  296. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/lakosha_maera/qey_village01/quests/lakosha_maera/lakosha_maera024.mp3", "", "", 2784457515, 1936365380, Spawn)
  297. AddConversationOption(conversation, "I am willing.", "dlg_34_5")
  298. StartConversation(conversation, NPC, Spawn, "Ah, very good thinking of you to find that out. Perhaps further investigation will turn something up, perhaps not. How do you feel about venturing into the Peat Bog?")
  299. end
  300. function dlg_34_5(NPC, Spawn)
  301. FaceTarget(NPC, Spawn)
  302. conversation = CreateConversation()
  303. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/lakosha_maera/qey_village01/quests/lakosha_maera/lakosha_maera025.mp3", "", "", 3981705980, 3354159055, Spawn)
  304. AddConversationOption(conversation, "All right.", "OfferQuest5")
  305. StartConversation(conversation, NPC, Spawn, "How fortunate. Nareh Lith is a friend of mine, and he has been studying the Peat Bog for some time now.")
  306. end
  307. function SpokenWithLithYet(NPC, Spawn)
  308. FaceTarget(NPC, Spawn)
  309. conversation = CreateConversation()
  310. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/lakosha_maera/qey_village01/quests/lakosha_maera/lakosha_maera026.mp3", "", "", 47750656, 1276810438, Spawn)
  311. AddConversationOption(conversation, "No, not yet.", "dlg_35_1")
  312. StartConversation(conversation, NPC, Spawn, "Have you spoken with Nareh Lith yet?")
  313. end
  314. function OfferQuest5(NPC, Spawn)
  315. OfferQuest(NPC, Spawn, TO_THE_SOURCE)
  316. end