mirror of
https://github.com/EQMacEmu/quests
synced 2026-08-21 00:23:04 -04:00
9 lines
No EOL
390 B
Lua
9 lines
No EOL
390 B
Lua
function event_say(e)
|
|
if(e.message:findi("hail")) then
|
|
if(e.other:GetFactionValue(e.self) >= -100) then
|
|
e.self:Say("If you are not a practitioner of the dark arts then I cannot help you. Leave my presence.");
|
|
else
|
|
e.self:Say("You have a lot of nerve wandering in here. We'll be watching you carefully. Try anything and it will be the last thing you ever try.");
|
|
end
|
|
end
|
|
end |