mirror of
https://github.com/ProjectEQ/projecteqquests
synced 2026-08-12 00:26:10 -04:00
10 lines
349 B
Lua
10 lines
349 B
Lua
-- 982: Cazic Touch (Death Touch)
|
|
function event_spell_effect(e)
|
|
local casterMob = eq.get_entity_list():GetMobID(e.caster_id);
|
|
if (casterMob and e.target:IsClient()) then
|
|
local client = e.target:CastToClient();
|
|
if (client) then
|
|
casterMob:Shout(string.upper(client:GetCleanName()) .. "!");
|
|
end
|
|
end
|
|
end
|