Sneak.lua 333 B

123456789101112131415161718192021
  1. --[[
  2. Script Name : Spells/Sneak.lua
  3. Script Author : LordPazuzu
  4. Script Date : 2022.09.10 08:09:08
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Grants stealth to caster
  9. function cast(Caster, Target)
  10. Stealth(1)
  11. end
  12. function remove(Caster, Target)
  13. RemoveStealth()
  14. end