Wayfarers_Mercenary_Jeryx.lua - Quest File
xxxxxxxxxx
1
-- Wayfarers_Mercenary_Jeryx (27083)
2
-- Alliance Tasks
3
4
--[[
5
Meat for Stew <= indifferent Solo
6
Taunting the Brood <= indifferent Solo
7
]]
8
9
--only get quest if faction <= indifferent
10
--1 Ally
11
--2 Warmly
12
--3 Kindly
13
--4 Amiably
14
--5 Indifferent
15
--6 Apprehensive
16
--7 Dubious
17
--8 Threateningly
18
--9 Scowls
19
20
--404 Dark Reign
21
--429 Norrath's Keepers
22
23
function event_say(e)
24
local is_gm = (e.other:Admin() > 80 and e.other:GetGM());
25
if (eq.is_current_expansion_lost_dungeons_of_norrath() or is_gm) then
26
27
if(e.message:findi("hail")) then
28
local DRF=e.other:GetFactionLevel(e.other:GetID(), e.self:GetID(), e.other:GetBaseRace(), e.other:GetClass(), e.other:GetDeity(), 1021, e.self);
29
if (DRF >= 5) then
30
e.self:Say("So, you want to get in good with them dark crusaders, eh? I might be able to help you. If you run a few errands for me, I can probably put in a good word.");
31
--Meat for Stew, Taunting the Brood
32
eq.task_selector({279, 280});
33
else
34
e.self:Say("You can probably go try to speak to the Dark Reign for work. I've got nothing for you.");
35
end
36
end
37
end
38
end
39
Quest Source: 28 May 2022