peq-quests/befallen/skeleton_Lrodd.lua
2023-12-31 23:25:21 -05:00

9 lines
368 B
Lua

function event_trade(e)
local item_lib = require("items");
if item_lib.check_turn_in(e.trade, {item1 = 18891}) then -- Item: A Tattered Cloth Note
e.self:Say("Search!! Find Windstream. Find the mallet!! One. Two. Three.");
e.other:Ding();
eq.spawn2(36096,0,0,-88,-637,-66,254); -- NPC: Cmdr_Windstream
end
item_lib.return_items(e.self, e.other, e.trade)
end