mirror of
https://github.com/EQMacEmu/quests
synced 2026-08-21 00:23:04 -04:00
9 lines
423 B
Lua
9 lines
423 B
Lua
function event_signal(e)
|
|
e.self:Say("All is going great sir, I will be sure to report any disturbances shall they present themselves.");
|
|
end
|
|
|
|
function event_say(e)
|
|
if(e.message:findi("hail")) then
|
|
e.self:Say("Hello there, " .. e.other:GetCleanName() .. ". Do you smell that? Man I sure am hungry and it smells like ol Joe is cooking up some fine steaks. Mmm, I sure hope I can leave soon and get some food.");
|
|
end
|
|
end
|