mirror of
https://github.com/ProjectEQ/projecteqquests
synced 2026-08-12 00:26:10 -04:00
8 lines
312 B
Lua
8 lines
312 B
Lua
function event_trade(e)
|
|
local item_lib = require("items");
|
|
if item_lib.check_turn_in(e.trade, {item1 = 67706}) then -- Item: Orb of Fury
|
|
eq.zone_emote(MT.Yellow,"The Specter of Fury gives a slight bow as it accepts the orb.");
|
|
eq.signal(292008,1)
|
|
end
|
|
item_lib.return_items(e.self, e.other, e.trade);
|
|
end
|