mirror of
https://github.com/EQMacEmu/quests
synced 2026-08-21 00:23:04 -04:00
6 lines
279 B
Lua
6 lines
279 B
Lua
function event_say(e)
|
|
if(e.message:findi("hail")) then
|
|
e.self:Say("Nice to see you, traveler! If it is a refreshing drink you are looking for then I got some stuff that will surely knock ya on your behind! Tis why they call me Mr. Fantalicus!");
|
|
e.self:DoAnim(58);
|
|
end
|
|
end
|