eqmac-quests/potranquility/Apprentice_Daultier.lua
2023-07-24 13:24:37 -07:00

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