mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
16 lines
352 B
Lua
Executable file
16 lines
352 B
Lua
Executable file
--[[
|
|
Script Name : Spells/Commoner/FaerieFire.lua
|
|
Script Author : neatz09
|
|
Script Date : 2020.09.06 03:09:39
|
|
Script Purpose :
|
|
:
|
|
--]]
|
|
|
|
function cast(Caster, Target, State)
|
|
SpawnSet(Target, "visual_state", State)
|
|
end
|
|
|
|
|
|
function remove(Caster, Target)
|
|
SpawnSet(Target, "visual_state", 0)
|
|
end
|