NOTICE: Started fixing it for WOD/PTR. Check the files at: http://wow.curseforge.com/addons/clctracker/files/
NOTICE: For the modified paladin power bar use: http://wow.curseforge.com/addons/clcppb/files/
Main purpose of the addon is to help the user easily track various cooldowns/auras/procs.
It supports multiple talent builds and should switch easy between them.
Also allows class specific modules that implement rotations (like clcret) or other features class specific.
Documentation main page: http://sites.google.com/site/clcinfowiki/
First steps: http://sites.google.com/site/clcinfowiki/first-steps
Code examples: http://sites.google.com/site/clcinfowiki/code-examples
Rotations for multiple classes by JManbc:
Video Tutorials:
User made tutorials:
- http://www.mmo-champion.com/threads/774331-Clcinfo-How-To
by Requital
- http://elitistjerks.com/f76/t53171-ret_fcfs_rotation_helper/p21/#post1770712
by Teleros
- http://eu.battle.net/wow/en/forum/topic/927076774
by Teleros
Template codes available for:
- Paladin: Retribution and Holy
- Priest: Discipline and Holy
Anyone can bring this addon up from dead, it was one of best addons back in the day to track stuff not just for rotation, i came back to wow since mop and i wish this addon did too
would be awesome if this could be modified to work with classic
I know support generally is dead, but this is still my go in making my own custom rotation codes. Everything still works for 8.0 except for event tracking/EvenListener due to the introduction of CombatLogGetCurrentEventInfo().
Anybody know where to start hacking into the code to fix?
In reply to illiaster:
In reply to illiaster:
Anybody looking at updating this for BFA?
For any rets if you talent the new Blade of Wrath, Blade of Justice (BoJ) no longer shows in the rotation priority, just a blank box
To fix change rotation.lua line 1045 to idBladeOfJustice = 184575 since blade of wrath doesn't have a shorter CD anymore it's fine to have it use the default blade of justice spell ID.
In 7.1 if you talent the new Blade of Wrath, Blade of Justice (BoJ) no longer shows in the rotation priority, just a blank box instead. any ideas how to fix this?
@andr0id
This works for me. :)
My next goal is to get the NextAbility icon to not be black if the CurrentAbility will generate the resource it needs. I find the black icon annoying also.
@illiaster OK, so hard coded hack for now, but I found the place to remove the charge count and charge cooldown sweep.
Go to clcinfo/data/global_icon.lua and comment out these lines in this bit of code starting at line 109
I'll look at parameterizing all this, but it gets annoying charge cooldown off the ability icons which was my priority goal.
BTW: I don't know how this affects things if you use clcinfo for cooldown icons. I just use clc for rotation and WA for cooldowns.
@andr0id
Yes please. Like I said, I was able to "somewhat" make it work by using StartChargeCooldown in icons.lua instead of CooldownFrame_Set if a spell has a charge, it works but not well. Looking for a proper implementation but author looks AFK.
HI everyone.
I use clcinfo as the core for my warlock module. I've been trying to figure out the icon shows the cooldown and count issue and have been poking around in the blizzard interface. One thing I noticed is that the spellbook icon show the gcd sweep and the cooldown progress but NOT the charge count. I'm going to keep digging at how/why it is different from the cooldown frame.
Andy
@illiaster
I got it to somewhat work, using "if count = nil". It's not pretty but is "okay". Some odd overlaps of the charge timer at times so still hoping for a proper fix aside from just a hack.
One thing I'm trying to get work (granted I am not a LUA expert by any mines) is the new Charge Cooldown.
Right now, if an ability has charges, eg: Mortal Strike or the new Blessed Hammer - return IconSpell() shows the icon as a cooldown instead of the charge/recharge timer.
I'm trying to hack it inside icons.lua to use the new Blizzard function StartChargeCooldown() instead of CooldownFrame_Set() if the spell still has charges but can't get it to work.
I am getting an Lua error in patch 7.0.3 on something simple as code: return IconSpell("Fireball",true) . What is going on?
Does anyone know if this addon will be updated for legion? think blizz should put this into their game UI
Whats up. So I'm trying to make a somewhat complicated tracker for HPally Selfless Healer.
I currently am attempting to set it up so that it reads the following spell order
HS>Jug>FoL>HP>=LoD(W/3 Charges of Holy Power)>FoL
However I was wondering if I could take this even further and break it down even more. In essence make another four rotations inside this own. I know this is already sounding confusing so I'll just get right to it.
So core rotation:
HS>Jug>FoL>HP>=LoD(W/3 Charges of Holy Power)>=FoL
Rotation IF Enhanced Holy Shock happens:
Jug>HS>FoL>HS>Jug>FoL>FoL
Rotation with Avenging Wrath:
HS>FoL>=HP>HS>Jug>FoL>HS>FoL>Jug>HS>FoL>FoL(So if Holy Prism is up it would be 3rd however if not Judgment would be cast)
Lust/Timewarp Rotation:
HS>Jug>FoL>HS>FoL>HP>=HS>Jug>FoL(If Holy Prism is up it would be higher priority than Holy Shock, however if not go back to Holy Shock)
Finally Lust+Avenging Wrath:
HS>FoL(Basically Holy Shock and Flash of Light repeated)
This is what I currently have worked on however it doesn't load.
return IconSpell("Holy Shock")
then
return IconSpell("Jugment")
then
return IconSpell("Flash of Light")
then
return IconSpell("Holy Prism)"
or
if UnitPower("player", SPELL_POWER_HOLY_POWER) == 3 then
return IconSpell("Light of Dawn")
or
return IconSpell("Flash of Light")
end
Any help/criticism is very much appreciated.
sorry I was on vacation the last one and a half weeks. I'll have a look into it. Thanks so far for the response.