peq-quests/frozenshadow/Mirror_Reflection.lua
2017-03-02 05:08:50 -08:00

13 lines
277 B
Lua

function event_spawn(e)
eq.set_timer('checkhate', 1000);
local hate_list;
end
function event_timer(e)
if (e.timer == 'checkhate') then
hate_list = e.self:CountHateList();
if (hate_list ~= nil and tonumber(hate_list) > 1) then
eq.depop();
end
end
end