mirror of
https://github.com/EQMacEmu/quests
synced 2026-08-21 00:23:04 -04:00
14 lines
1.1 KiB
Lua
14 lines
1.1 KiB
Lua
--Quest Name: Bard Mail Quest
|
|
|
|
function event_say(e)
|
|
if(e.message:findi("hail")) then
|
|
e.self:Say(string.format("Hail, %s - Are you [interested] in helping the League of Antonican Bards by delivering some [mail]?",e.other:GetName()));
|
|
elseif(e.message:findi("mail") and not e.message:findi("deliver") and not e.message:findi("Qeynos")) then
|
|
e.self:Say("The League of Antonican Bards has a courier system made up of travelers and adventurers. We pay good gold to anyone who will take messages from bards such as myself to one of our more central offices. Are you [interested]?");
|
|
elseif(e.message:findi("interested")) then
|
|
e.self:Say("I have messages that need to go to - well, right now I have one that needs to go to Qeynos. Will you [deliver] mail to [Qeynos] for me?");
|
|
elseif(e.message:findi("deliver") or e.message:findi("Qeynos")) then
|
|
e.self:Say("Take this letter to Tralyn Marsinger in Qeynos. You can find him at the bard guild hall. I am sure he will compensate you for your troubles.");
|
|
e.other:SummonCursorItem(18150); -- Item: A Bardic Letter (Qeynos)
|
|
end
|
|
end
|