testblank.lua 471 B

123456789101112131415161718192021222324252627
  1. --[[
  2. Script Name : Spells/Commoner/testblank.lua
  3. Script Author : LordPazuzu
  4. Script Date : 2023.09.07 12:09:45
  5. Script Purpose : Spell Stuff
  6. :
  7. --]]
  8. function precast(Caster, Target)
  9. --Set conditions for doing spell stuff
  10. end
  11. function cast(Caster, Target)
  12. --Do spell stuff
  13. end
  14. function tick(Caster, Target)
  15. --Do DoT stuff
  16. end
  17. function remove(Caster, Target)
  18. --Undo spell stuff
  19. end