mirror of
https://github.com/EQMacEmu/quests
synced 2026-08-21 00:23:04 -04:00
9 lines
533 B
Lua
9 lines
533 B
Lua
function event_say(e)
|
|
if(e.message:findi("hail")) then
|
|
if(e.other:GetFactionValue(e.self) >= 0) then
|
|
e.self:Say("Hail, " .. e.other:GetCleanName() .. "! Welcome to Izibat's wondrous robes! I have many magnificent wares in stock, but don't delay, supplies are going fast!");
|
|
else
|
|
e.self:Say("I am sorry but I am only allowed to make dealings with persons that have found favor in the Midst quarter. Please see Lamukas to inquire about how to further strengthen your alliance with the people of the Midst.");
|
|
end
|
|
end
|
|
end
|