kyv_controller.lua - Quest File
xxxxxxxxxx
1
local Jaeth = false;
2
local Mihl = false;
3
local Nass = false
4
5
function event_spawn(e)
6
eq.unique_spawn(336068,0,0,297.36, -621.88, 99.41, 116.5); -- Nass
7
eq.unique_spawn(336067,0,0,419.13, -947.84, 101.55, 9.0); -- Jaeth
8
eq.unique_spawn(336066,0,0,520.05, -552.84, 99.41, 281.2); -- Mihl
9
Jaeth = false;
10
Mihl = false;
11
Nass = false
12
end
13
14
15
function event_signal(e)
16
if (e.signal == 336066) then
17
Mihl = true;
18
elseif (e.signal == 336067) then
19
Jaeth = true;
20
elseif (e.signal == 336068) then
21
Nass = true;
22
end
23
if (Jaeth and Mihl and Nass) then
24
eq.depop_with_timer();
25
end
26
end
27
Quest Source: 28 May 2022