Tracking.lua 459 B

12345678910111213141516171819
  1. --[[
  2. Script Name : tracking.lua
  3. Script Purpose : Tracking spells
  4. Script Author : John Adams
  5. Script Date : 2008.12.07
  6. Script Notes : I am not sure Tracking is a "spell"?
  7. --]]
  8. function cast(Caster, Target, Type, Min, Max)
  9. -- code to cast the spell
  10. end
  11. function tick(Caster, Target, Type, Min, Max)
  12. -- code to process each call_frequency (tick) set in spell_tiers
  13. end
  14. function remove(Caster, Target)
  15. -- code to remove the spell
  16. end