123456789101112131415161718192021222324252627 |
- --[[
- Script Name : Spells/Commoner/testblank.lua
- Script Author : LordPazuzu
- Script Date : 2023.09.07 12:09:45
- Script Purpose : Spell Stuff
- :
- --]]
- function precast(Caster, Target)
- --Set conditions for doing spell stuff
- end
- function cast(Caster, Target)
- --Do spell stuff
- end
- function tick(Caster, Target)
- --Do DoT stuff
- end
- function remove(Caster, Target)
- --Undo spell stuff
- end
|