peq-quests/freportn/Sentry_Theo.lua
2021-02-07 20:50:01 -08:00

21 lines
706 B
Lua

-- items: 12132, 12133
function event_say(e)
if(e.message:findi("hail")) then
e.self:Say("Please speak with the masters. I am on watch and have no time to converse.");
end
end
function event_trade(e)
local item_lib = require("items");
if(item_lib.check_turn_in(e.trade, {item1 = 12132})) then
e.self:Say("That gives me new life. Take it to the next sentry.");
e.other:SummonItem(12133); -- Item: Part of Potion of Marr
e.other:Ding();
e.other:Faction(362,5,0); -- Faction: Priests of Marr
e.other:Faction(330,-10,0); -- Faction: The Freeport Militia
e.other:Faction(281,5,0); -- Faction: Knights of Truth
e.other:AddEXP(100);
end
item_lib.return_items(e.self, e.other, e.trade)
end