mirror of
https://github.com/EQMacEmu/quests
synced 2026-08-21 00:23:04 -04:00
17 lines
474 B
Lua
17 lines
474 B
Lua
function event_say(e)
|
|
if(e.message:findi("hail")) then
|
|
e.self:Say("Hello. How nice to meet you, " .. e.other:GetCleanName() .. "!");
|
|
end
|
|
end
|
|
|
|
function event_waypoint_arrive(e)
|
|
if(e.wp == 8) then
|
|
e.self:Say("Would you please leave me alone?!");
|
|
elseif(e.wp == 9) then
|
|
e.self:Say("I need to get out of here.");
|
|
elseif(e.wp == 12) then
|
|
e.self:Say("Would you please stop following me!!");
|
|
elseif(e.wp == 16) then
|
|
e.self:Say("I just adore this place.");
|
|
end
|
|
end
|