mirror of
https://github.com/ProjectEQ/projecteqquests
synced 2026-08-12 00:26:10 -04:00
* Fix mysterious_voice * Add LDoN check for mysterious voice * Change zoneid's to shortnames
20 lines
No EOL
1,007 B
Lua
20 lines
No EOL
1,007 B
Lua
-- BeginFile: qey2hh1\player.pl
|
|
-- Quest file for Adventurer's Stone
|
|
-- Quest file for West Karana: Paladin message during Necromancer Epic 1.5 (Soulwhisper)
|
|
|
|
function event_enter_zone(e)
|
|
local level = e.self:GetLevel();
|
|
local qglobals = eq.get_qglobals(e.self);
|
|
|
|
if(level >= 15 and qglobals.Wayfarer == nil and eq.is_lost_dungeons_of_norrath_enabled()) then
|
|
e.self:Message(MT.Yellow, "A mysterious voice whispers to you, 'Melaara Tenwinds 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
|
|
|
|
function event_loot(e)
|
|
if e.item:GetID() == 26896 and e.self:HasItem(11430) and e.self:HasItem(14344) and e.self:HasItem(22892) then
|
|
e.self:Message(MT.Yellow, "With his last breath, the paladin says, 'You are too late. The last paladin has fled to Natimbi with the staff and is on his way to destroy it!'");
|
|
end
|
|
end
|
|
|
|
-- EndFile: qey |