mirror of
https://github.com/EQMacEmu/quests
synced 2026-08-21 00:23:04 -04:00
* Fixed Keeper of Souls spawn location * Posky quest NPC's (aside from epic quests) will no longer despawn on quest completions, they will despawn naturally after a short while. * Added correct reward dialogue on 30'ish plane of sky quests and a couple missing dialogue lines on sirran, keymaster, and overseer of air, including some that prompt being attacked. * [Neriak Foriegn Quarter] Guard should now be able to open the triple sections gate all at once.
21 lines
No EOL
629 B
Lua
21 lines
No EOL
629 B
Lua
function event_spawn(e)
|
|
eq.set_timer("pick_up", 2000);
|
|
end
|
|
|
|
function event_timer(e)
|
|
if ( e.timer == "pick_up" ) then
|
|
while ( e.self:CheckGround() ) do
|
|
e.self:Emote("picks up something from the ground.");
|
|
end
|
|
end
|
|
end
|
|
|
|
|
|
function event_say(e)
|
|
if(e.message:findi("hail")) then
|
|
e.self:Say("What are you doing down here? This is a dangerous place. We are only here to finish off any enemies of [the Circle] who escape the sharks.");
|
|
elseif(e.message:findi("circle")) then
|
|
e.self:Say("What? Why the Circle of Unseen Hands, of course!");
|
|
e.other:Faction(e.self,223,-5); -- Faction: Circle of Unseen Hands
|
|
end
|
|
end |