mirror of
https://github.com/proxeeus/quests
synced 2026-08-22 10:29:07 -04:00
18 lines
1.3 KiB
Lua
18 lines
1.3 KiB
Lua
function event_say(e)
|
|
if(e.message:findi("Hail")) then
|
|
e.self:Say("Hail. " .. e.other:GetName() .. " - Are you [interested] in helping the League of Antonican Bards by delivering some [mail]?");
|
|
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(18153);
|
|
end
|
|
end
|
|
|
|
--Author: RealityIncarnate
|
|
-------------------------------------------------------------------------------------------------
|
|
-- Converted to .lua using MATLAB converter written by Stryd and manual edits by Speedz
|
|
-- Find/replace data for .pl --> .lua conversions provided by Speedz, Stryd, Sorvani and Robregen
|
|
-------------------------------------------------------------------------------------------------
|