mirror of
https://github.com/ProjectEQ/projecteqquests
synced 2026-08-12 00:26:10 -04:00
9 lines
368 B
Lua
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
|