peq-quests/qeynos2/Guard_Drath.lua
2023-08-15 11:39:43 -04:00

11 lines
435 B
Lua

function event_combat(e)
if e.joined then
e.self:Say(string.format("Time to die %s!",e.other:GetCleanName()));
end
end
function event_say(e)
if(e.message:findi("")) then
e.self:Say(string.format("Hail, %s. If you are not busy, we can always use help keeping the beetle population under control in front of the gates. But be careful, we have had sightings of a large queen beetle out there.",e.other:GetName()));
end
end