mirror of
https://github.com/ProjectEQ/projecteqquests
synced 2026-08-12 00:26:10 -04:00
18 lines
700 B
Lua
18 lines
700 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("hail")) then
|
|
e.self:Say(string.format("Hail, %s! I am sorry but I do not have time to chat, as I must get back to my patrol. May the Prme Healer walk with you!",e.other:GetName()));
|
|
end
|
|
end
|
|
|
|
function event_waypoint_arrive(e)
|
|
if(e.wp == 18) then
|
|
e.self:Say("Have you noticed anything strange about Commander Bayle lately? I saw him talking to that trouble-making Irontoe the other day and one night late last week, when I was on patrol, I saw him sneaking into Crow's");
|
|
eq.signal(2094,1); -- NPC: Guard_Hezlan
|
|
end
|
|
end
|