View Single Post
11-09-07, 04:55 PM   #5
Tatheltek
A Cyclonian
AddOn Author - Click to view addons
Join Date: Dec 2006
Posts: 43
Good point. I'll have an update for this later tonight.

Mind you I'm sitting here at work and can't try anything but I have one last question.

If I:
Code:
local start, duration, enabled = GetSpellCooldown("Overpower", BOOKTYPE_SPELL);
with the logic
Code:
If target dodges then
if enabled == 0 then
alert
then if i want to do this for revenge as well can i just add:
Code:
local start, duration, enabled = GetSpellCooldown("Revenge", BOOKTYPE_SPELL);
or will that create an error because the addon is checking for something thats registered twice?

Last edited by Tatheltek : 11-09-07 at 05:50 PM.
  Reply With Quote