eqmac-quests/kithicor/Eenot.lua
regneq 0484afa9b0 Robregen
* Grim's Revenge: rewrote on how the trigger works to spawn the tigers. added some faction trigger dialogs.
* Neriak Common and Solusek Eye: the triple doors will now open all at once when clicked on.
* Shutters is now implemented for Butcher <-> Timorous (chazix)
Elroz
* Removed class requirement for raincaller quest, so any class can do the ranger bow. It just requires high enough faction with the ranger guildmaster in kelethin.
* various fixes and adjustments.
2024-01-04 15:52:44 -08:00

17 lines
286 B
Lua

function event_spawn(e)
eq.set_timer("depop",math.random(10000,7200000));
end
function event_timer(e)
eq.depop();
end
function event_combat(e)
if(e.joined) then
if(not eq.is_paused_timer("depop")) then
eq.pause_timer("depop");
end
else
eq.resume_timer("depop");
end
end