eqmod-proxeeus-quests/sleeper/#Kerafyrm.lua
2024-01-21 19:19:31 +01:00

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