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

9 lines
No EOL
324 B
Lua

function event_say(e)
if(e.message:findi("hail")) then
if(e.other:GetFactionValue(e.self) >= -100) then
e.self:Say("I've got some of the finest tasties around. Try one you'll see.");
else
e.self:Say("We know who you are. Give me the slightest reason and I will call the scounds upon your head.");
end
end
end