eqmac-quests/echo/an_archer.lua
2023-07-24 13:24:37 -07:00

9 lines
No EOL
323 B
Lua

function event_say(e)
if(e.message:findi("hail")) then
if(e.other:GetFactionValue(e.self) >= -100) then
e.self:Say("Bug off. I'm on watch.");
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