Camouflage.lua 402 B

123456789101112131415161718192021
  1. --[[
  2. Script Name : Spells/Commoner/Camouflage.lua
  3. Script Author : LordPazuzu
  4. Script Date : 2024.05.03 03:05:40
  5. Script Purpose :
  6. :
  7. --]]
  8. function cast(Caster, Target)
  9. Stealth(1)
  10. end
  11. function tick(Caster, Target)
  12. if HasMoved(Caster) then
  13. CancelSpell()
  14. end
  15. end
  16. function remove(Caster, Target)
  17. RemoveStealth()
  18. end