mirror of
https://github.com/EQMacEmu/quests
synced 2026-08-21 00:23:04 -04:00
10 lines
247 B
Lua
10 lines
247 B
Lua
function event_spawn(e)
|
|
e.self:CastToNPC():SetNoQuestPause(true);
|
|
end
|
|
|
|
function event_say(e)
|
|
if(e.message:findi("hail")) then
|
|
e.self:DoAnim(64);
|
|
e.self:Emote("whispers. 'Please return to the lobby. as not to disturb the elders.'");
|
|
end
|
|
end
|