mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
22 lines
No EOL
379 B
Lua
22 lines
No EOL
379 B
Lua
--[[
|
|
Script Name : Spells/WalkLightly.lua
|
|
Script Author : dorbin
|
|
Script Date : 2024.04.11 03:04:57
|
|
Script Purpose :
|
|
:
|
|
--]]
|
|
|
|
--[[ Info from spell_display_effects (remove from script when done)
|
|
|
|
|
|
--]]
|
|
|
|
function cast(Caster, Target)
|
|
Stealth(1)
|
|
|
|
end
|
|
|
|
function remove(Caster, Target)
|
|
RemoveStealth()
|
|
|
|
end |