WalkLightly.lua 379 B

12345678910111213141516171819202122
  1. --[[
  2. Script Name : Spells/WalkLightly.lua
  3. Script Author : dorbin
  4. Script Date : 2024.04.11 03:04:57
  5. Script Purpose :
  6. :
  7. --]]
  8. --[[ Info from spell_display_effects (remove from script when done)
  9. --]]
  10. function cast(Caster, Target)
  11. Stealth(1)
  12. end
  13. function remove(Caster, Target)
  14. RemoveStealth()
  15. end