mirror of
https://github.com/proxeeus/quests
synced 2026-08-22 10:29:07 -04:00
7 lines
494 B
Lua
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
|