mirror of
https://github.com/ProjectEQ/projecteqquests
synced 2026-08-12 00:26:10 -04:00
19 lines
447 B
Lua
19 lines
447 B
Lua
|
|
function event_spawn(e)
|
||
|
|
eq.set_timer("Flavor", 5 * 60 * 1000); -- 5 Minutes
|
||
|
|
end
|
||
|
|
|
||
|
|
function event_timer(e)
|
||
|
|
if e.timer == "Flavor" then
|
||
|
|
e.self:Emote("moans pitifully, 'Satchel... Sewers...'");
|
||
|
|
end
|
||
|
|
eq.stop_timer(e.timer)
|
||
|
|
end
|
||
|
|
|
||
|
|
function event_say(e)
|
||
|
|
e.self:Emote("moans in a sad, wispy voice. 'Death... coming for all...");
|
||
|
|
end
|
||
|
|
|
||
|
|
function event_trade(e)
|
||
|
|
local item_lib = require("items");
|
||
|
|
item_lib.return_items(e.self, e.other, e.trade);
|
||
|
|
end
|