eqmod-proxeeus-quests/highkeep/Lady_McCabe.lua
2018-03-28 11:36:51 +02:00

7 lines
494 B
Lua

function event_say(e)
if(e.message:findi("hail")) then
e.self:Say(string.format("Pleasure to meet you, %s. What brings you to High Hold? You do not appear to be the gambling type. Then again, you are speaking with me. That is quite a gamble in itself. I just love high rollers. Really, I do!", e.other:GetName());
elseif(e.message:findi("battle staff")) then
e.self:Say("I have no idea what you are talking about. Battle staff.. Hmmm.. No, it does not ring a bell.");
end
end