eq2emu-content/Spells/Commoner/EnforcedReverence.lua
2025-01-19 19:55:35 +00:00

27 lines
No EOL
621 B
Lua

--[[
Script Name : Spells/Commoner/EnforcedReverence.lua
Script Author : image
Script Date : 2025.01.19 04:01:31
Script Purpose :
:
--]]
--[[ Info from spell_display_effects (remove from script when done)
--]]
function cast(Caster, Target)
local targets = GetGroup(Caster)
if targets ~= nil then
for k,v in ipairs(targets) do
if GetID(Target) == GetID(v) then
PlayAnimation(v, 229)
end
end
elseif GetID(Caster) == GetID(Target) then
PlayAnimation(Target, 229)
end
end