LibCooldown-Spell-2.0
Description
Register spell cooldowns to more descriptive events.
Callbacks Fired
:LibCooldownSpell_Start(spellName , spellID, startTime, duration)
Arguments
- spellName:string - Name of triggered spell
- spellID:number - ID of spell in spellbook (as used by GetSpellName(spellID, bookType)
- startTime:number - Time when cooldown started (as returned by GetTime())
- duration:number - Duration of cooldown until finished
Notes
- Fired whenever one of your spell cooldowns was started
:LibCooldownPetSpell_Start(spellName , spellID, startTime, duration)
Arguments
- spellName:string - Name of triggered spell
- spellID:number - ID of spell in spellbook (as used by GetSpellName(spellID, bookType)
- startTime:number - Time when cooldown started (as returned by GetTime())
- duration:number - Duration of cooldown until finished
Notes
- Fired whenever one of your pets spell cooldowns was started
:LibCooldownSpell_End(spellName , spellID, startTime, duration)
Arguments
- spellName:string - Name of triggered spell
- spellID:number - ID of spell in spellbook (as used by GetSpellName(spellID, bookType)
- startTime:number - Time when cooldown started (as returned by GetTime())
- duration:number - Duration of cooldown until finished
Notes
- Fired whenever one of your spell cooldowns has finished
:LibCooldownPetSpell_End(spellName , spellID, startTime, duration)
Arguments
- spellName:string - Name of triggered spell
- spellID:number - ID of spell in spellbook (as used by GetSpellName(spellID, bookType)
- startTime:number - Time when cooldown started (as returned by GetTime())
- duration:number - Duration of cooldown until finished
Notes
- Fired whenever one of your pets spell cooldowns has finished
Notes
- Callbacks are fired using CallbackHandler-1.0
Comments