mirror of
https://github.com/proxeeus/quests
synced 2026-08-22 10:29:07 -04:00
17 lines
No EOL
471 B
Lua
17 lines
No EOL
471 B
Lua
function event_cast_begin(e)
|
|
if(e.spell:ID() == 982) then
|
|
e.self:Shout(e.self:GetTarget():GetCleanName() .. "!");
|
|
end
|
|
end
|
|
|
|
function event_waypoint_arrive(e)
|
|
if ( e.wp == e.self:GetMaxWp() - 1 ) then
|
|
eq.cross_zone_signal_npc_by_npctype_id(114508, 1); -- A Guardian of the Shrine (Skyshrine)
|
|
eq.debug("Sleeper at end waypoint");
|
|
eq.depop();
|
|
end
|
|
end
|
|
|
|
function event_slay(e)
|
|
e.self:Shout("Begone insect, I have much slaying yet to do!");
|
|
end |