mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
21 lines
409 B
Lua
21 lines
409 B
Lua
--[[
|
|
Script Name : Spells/Commoner/ConcealedPresence.lua
|
|
Script Author : LordPazuzu
|
|
Script Date : 2024.05.09 03:05:23
|
|
Script Purpose :
|
|
:
|
|
--]]
|
|
|
|
function cast(Caster, Target)
|
|
Stealth(1)
|
|
end
|
|
|
|
function tick(Caster, Target)
|
|
if HasMoved(Caster) then
|
|
CancelSpell()
|
|
end
|
|
end
|
|
|
|
function remove(Caster, Target)
|
|
RemoveStealth()
|
|
end
|