mirror of
https://github.com/EQMacEmu/quests
synced 2026-08-21 00:23:04 -04:00
6 lines
240 B
Lua
6 lines
240 B
Lua
|
|
function event_say(e)
|
||
|
|
if(e.message:findi("hail")) then
|
||
|
|
e.self:Say("Halt. I wouldn't proceed any further " .. e.other:GetCleanName() .. ". An underbulk swarm has broken through the cavern walls and it's not safe down there.");
|
||
|
|
end
|
||
|
|
end
|