21 lines
333 B
Lua
Executable file
21 lines
333 B
Lua
Executable file
--[[
|
|
Script Name : Spells/Sneak.lua
|
|
Script Author : LordPazuzu
|
|
Script Date : 2022.09.10 08:09:08
|
|
Script Purpose :
|
|
:
|
|
--]]
|
|
|
|
-- Grants stealth to caster
|
|
|
|
|
|
function cast(Caster, Target)
|
|
Stealth(1)
|
|
|
|
end
|
|
|
|
function remove(Caster, Target)
|
|
RemoveStealth()
|
|
|
|
end
|
|
|