mirror of
https://github.com/ProjectEQ/projecteqquests
synced 2026-08-12 00:26:10 -04:00
13 lines
981 B
Lua
13 lines
981 B
Lua
-- items: 18150
|
|
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")) 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 to 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:SummonItem(18150); -- Item: Bardic Letter (Qeynos)
|
|
end
|
|
end
|