mirror of
https://github.com/ProjectEQ/projecteqquests
synced 2026-08-12 00:26:10 -04:00
21 lines
1.1 KiB
Lua
21 lines
1.1 KiB
Lua
-- no response on hail from live
|
|
-- items: 1772, 14585, 1779
|
|
|
|
function event_trade(e)
|
|
local item_lib = require("items");
|
|
|
|
if(item_lib.check_turn_in(e.trade, {item1 = 1772,item2 = 14585})) then -- sealed parchment, Odd Cold Iron Necklace
|
|
e.self:Say("Ah..yes, I have seen this symbol before. There is a kobold that lives among the gnomes of Ak'anon. He may be reluctant to speak with you but you have no need to fear him. He is a follower of Brell Serilis and a valuable source of information on kobold society and culture. I will construct a message for him. Deliver the message and necklace and perhaps he can enlighten you to its meaning.");
|
|
e.other:SummonItem(14585); -- Odd Cold Iron Necklace
|
|
e.other:SummonItem(1779); -- A Note
|
|
e.other:Ding();
|
|
e.other:Faction(220,20,0); -- Faction: Arcane Scientists
|
|
e.other:Faction(281,20,0); -- Faction: Knights of Truth
|
|
e.other:Faction(296,-20,0); -- Faction: Opal Darkbriar
|
|
e.other:Faction(330,-20,0); -- Faction: The Freeport Militia
|
|
e.other:AddEXP(1000);
|
|
end
|
|
item_lib.return_items(e.self, e.other, e.trade)
|
|
end
|
|
|
|
-- END of FILE Zone:freportw -- Glyssa_Sonshaw
|