a_shiverback.lua - Quest File
xxxxxxxxxx
1
function event_signal(e)
2
entity_list = eq.get_entity_list();
3
4
if(e.signal == 1) then
5
e.self:Say("Such is the will of Cazic-Thule!");
6
elseif(e.signal == 2) then
7
local mobtypeID = entity_list:GetMobByNpcTypeID(72003);
8
local follow_mob = mobtypeID:GetID();
9
eq.follow(follow_mob);
10
elseif(e.signal == 3) then
11
eq.stop_follow();
12
end
13
end
14
Quest Source: 28 May 2022