peq-quests/qeynos/Barthal.lua
2015-03-14 16:18:39 -04:00

17 lines
514 B
Lua

function event_say(e)
if(e.message:findi("hail")) then
e.self:Say("Hail, " .. e.other:GetName() .. "! We've got the best prices in town.. No need to shop around.. Heh, heh. I think I'll make that my new slogan!");
end
end
function event_signal(e)
if(e.signal == 1) then
eq.stop();
e.self:MerchantCloseShop();
elseif(e.signal == 2) then
eq.start(61);
e.self:MerchantOpenShop();
elseif(e.signal == 3) then
e.self:Say("Heh.. Why don't you try Freeport.. or Erudin.. ANYwhere but here!");
end
end