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

9 lines
351 B
Lua

function event_say(e)
if(e.message:findi("hail")) then
if(e.other:GetFactionValue(e.self) >= -100) then
e.self:Say("I got a close eye on you. Better watch your step.");
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