mirror of
https://github.com/ProjectEQ/projecteqquests
synced 2026-08-12 00:26:10 -04:00
21 lines
831 B
Lua
21 lines
831 B
Lua
-- items: 12131, 12132
|
|
function event_say(e)
|
|
if(e.message:findi("hail")) then
|
|
e.self:Say("Please speak no further. I am nothing more than a defender of this temple. The words of Marr lie with the masters and clerics of this temple. They await you.");
|
|
end
|
|
end
|
|
|
|
function event_trade(e)
|
|
local item_lib = require("items");
|
|
|
|
if(item_lib.check_turn_in(e.trade, {item1 = 12131})) then
|
|
e.self:Say("Very good. Nothing more than a sip and I feel much more alert. The next sentry awaits you.");
|
|
e.other:SummonItem(12132); -- 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
|