A_Mouth_of_Insanity.lua - Quest File
xxxxxxxxxx
1
function event_combat(e)
2
if (e.joined == true) then
3
eq.set_timer("OOBcheck", 6 * 1000);
4
else
5
eq.stop_timer("OOBcheck");
6
end
7
end
8
9
10
function event_timer(e)
11
if(e.timer=="OOBcheck") then
12
eq.stop_timer("OOBcheck");
13
if (e.self:GetX() > -110 or e.self:GetY() > -107) then
14
e.self:GotoBind();
15
e.self:WipeHateList();
16
e.self:CastSpell(3230,e.self:GetID()); -- Spell: Balance of the Nameless
17
else
18
eq.set_timer("OOBcheck", 6 * 1000);
19
end
20
end
21
end
22
Quest Source: 28 May 2022