mirror of
https://github.com/EQMacEmu/quests
synced 2026-08-21 00:23:04 -04:00
9 lines
262 B
Lua
9 lines
262 B
Lua
function event_signal(e)
|
|
e.self:Say("Not a problem sir.");
|
|
end
|
|
|
|
function event_say(e)
|
|
if(e.message:findi("hail")) then
|
|
e.self:Say("Hey there " .. e.other:GetCleanName() .. ". Don't listen to my brother Reloen, he's just out to make a quick buck.");
|
|
end
|
|
end
|