eqmac-quests/shadowhaven/Defender_Qualern.lua

22 lines
617 B
Lua
Raw Permalink Normal View History

2023-07-24 13:24:37 -07:00
function event_say(e)
if(e.message:findi("hail")) then
e.self:Say("Hello, " .. e.other:GetCleanName() .. ". Inside is our main training facilities of new defender recruits. If you wish to go inside please keep to yourself as there may be some training exercises going on.");
end
end
function event_combat(e)
if(e.joined) then
eq.set_timer("combatsay",300000);
else
eq.stop_timer("combatsay");
end
end
function event_timer(e)
e.self:Say("A fool you are indeed to test your fighting skills to mine! You shall now die by my blade!");
end
function event_death_complete(e)
eq.stop_timer("combatsay");
end