peq-quests/erudnint/player.lua
Xackery 82188d65b1
Fix mysterious_voice (#1393)
* Fix mysterious_voice

* Add LDoN check for mysterious voice

* Change zoneid's to shortnames
2024-04-20 20:17:32 -04:00

9 lines
579 B
Lua

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
e.self:Message(MT.Yellow, "A mysterious voice whispers to you, 'Ienala Eceiaiu 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.'");
end
end