peq-quests/felwitheb/player.lua

10 lines
581 B
Lua
Raw Permalink Normal View History

2015-03-14 16:18:39 -04:00
function event_enter_zone(e)
local level = e.self:GetLevel();
local zoneid = eq.get_zone_id();
local qglobals = eq.get_qglobals(e.self);
if(level >= 15 and qglobals.Wayfarer == nil and e.self:GetStartZone() == zoneid and eq.is_lost_dungeons_of_norrath_enabled()) then
2023-08-13 17:16:42 -04:00
e.self:Message(MT.Yellow, "A mysterious voice whispers to you, 'Thwinose Vilgarn has just joined the Wayfarers Brotherhood and has some information about them, and how you can start doing odd jobs for them. You looked like the heroic sort, so I wanted to contact you . . . discreetly.'");
2015-03-14 16:18:39 -04:00
end
end