HalflingGrandTactics.lua 414 B

12345678910111213141516171819202122
  1. --[[
  2. Script Name : Spells/Commoner/HalflingGrandTactics.lua
  3. Script Author : LordPazuzu
  4. Script Date : 2024.05.04 08:05:17
  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