mirror of
https://github.com/EQMacEmu/quests
synced 2026-08-21 00:23:04 -04:00
* 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.
17 lines
286 B
Lua
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
|