What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal
RebornBuddy Forums

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Cooldown spell

klokje

Community Developer
Joined
Mar 7, 2010
Messages
72
Hi all,

I got a question, Is it possible to see the cooldown of a spell, like some spell has cooldown for like 8 min and I really need to know if its more that 2 or something or. I hope you understand
 
I assume you mean through the WoW UI. If that is the case there are plenty of addons to do such a thing, best bet is to search curse for cooldown and take a look what results you get.

if this is not what you mean then I apologise. :)
 
Search the default mage cc for the word "Cooldown" and you will see how to acess it.
 
A long time ago a member named TIA provided a nice little workaround for cooldown issues that may be fixed now. But if all else fails, use this as I still use it today.

Code:
//Dancing Rune Weapon workaround provided by TIA
if ((PvPUseDRW) && (SpellManager.KnownSpells.ContainsKey("Dancing Rune Weapon")))
{
WoWSpell spell = SpellManager.KnownSpells["Dancing Rune Weapon"];
if (!spell.Cooldown) //We may not have enoph RP to cast. So check if its on CD
{
if (!DRWSpam)
Slog("#Dancing Rune Weapon Ready.... Disable RP Dump#");
DRWToggle = true;
DRWSpam = true;
}
}
 
Back
Top