Log In
Sign Up
Go Gold
Home
Forum
Mail
Downloads
Game Search
Macro Editor
Notes
Membership
Nerissa_Clothspinner.lua - Quest File
General Info
Quest File
-- items: 18801, 13302, 18862 function event_waypoint_arrive(e) if(e.wp == 17) then e.self:Say("When will my sister show up? I need her!"); elseif(e.wp == 43) then e.self:Say("Bartender! Some water, please."); end end function event_say(e) if(e.message:findi("hail")) then e.self:QuestSay(e.other, "Good day to you! Be careful in the city of Qeynos. [Rumors] of corruption may be true. Believe me. I wish my [sister] were here to help."); elseif(e.message:findi("sister")) then e.self:QuestSay(e.other, "My sister is in the Karanas. She is a warrior. Her name is Milea. I really need her. Would you please deliver a note to her? You look able-bodied enough for the job."); elseif(e.message:findi("deliver a note")) then if(e.other:GetLevel() < 4) then e.self:Say("I cannot discuss such things with a person as young to the world as you are."); elseif(e.other:GetLevel() > 65) then e.self:Say("I cannot trouble a person of your stature with such trivial talk."); else e.self:QuestSay(e.other, "Here you go then, brave adventurer. Godspeed to you."); e.other:SummonItem(18801); -- Item: Tattered Note end elseif(e.message:findi("rumors")) then e.self:QuestSay(e.other, "I have heard that a few of the Qeynos merchants and guards are not very happy with the current state of the city. Taxes are too high and many of the guards have been sent to the outlands, leaving Qeynos vulnerable to attack. I do not feel the same way, but I fear these few may become many. I [fear for my life]."); elseif(e.message:findi("fear")) then e.self:QuestSay(e.other, "During a late night stroll by the pond in north Qeynos I spied a guard carrying a very large carpet on his shoulders. He approached the pond's edge and unrolled the carpet, the body of another guard rolled out and began to moan. The other guard grabbed for a long spear like weapon from his back. He drove the weapon into the man and pushed him into the pond. I screamed. He turned to me and I ran. I do not think he gave chase, too bad, he would not like to run into my [guardian] at home. I told my guardian and we both went to the pond and saw no body. He believes I was drinking too much wine. I do not drink. Now I fear for my life when I am in the streets of Qeynos."); elseif(e.message:findi("guardian")) then e.self:QuestSay(e.other, "When my big sister left Qeynos for adventure, she left me in the hands of her old time friend Kane Bayle. Yes, the commander of the Qeynos Guards is my guardian. You would think I would be safe. Every time I tell him the rumors I hear he just ignores me. He is too busy I guess."); end end function event_trade(e) local item_lib = require("items"); if(item_lib.check_turn_in(e.trade, {item1 = 13302})) then e.self:QuestSay(e.other, "Thank you my friend. I understand that Astaed Wemor of the Temple of Life has been concerned for my well being. Take him this note. I am sure he will reward you for easing my troubled mind.. If you are a respected member."); e.other:Ding(); e.other:SummonItem(18862); -- Item: Tattered Note e.other:Faction(291, 1, 0); -- Faction: Merchants of Qeynos e.other:Faction(223, -1, 0); -- Faction: Circle of Unseen Hands e.other:Faction(219, 1, 0); -- Faction: Antonius Bayle e.other:Faction(229, 1, 0); -- Faction: Coalition of Tradefolk e.other:Faction(262, 1, 0); -- Faction: Guards of Qeynos e.other:AddEXP(3000); e.other:GiveCash(0, 10, 0, 0); end item_lib.return_items(e.self, e.other, e.trade) end
Source: 17 Jan 2022
Quest Source: 28 May 2022