peq-quests/uqua/#Specter_of_Fury.lua
2023-08-13 17:16:42 -04:00

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