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

CLU (Codified Likeness Utility)

Status
Not open for further replies.
I got some beer, no school tomorrow and I'm about to test this bad boy out. Which class you want me to try? I got them all. :)
 
Of course you had to update it while I was healing Madness :P. I have actually gotten compliments on how well Atonement spec heals. They were unaware!
 
Last edited:
Holy Paladin is soooo hard to get right....I have just realised that 4 out 5 times the HB hook fails and nothing is working as it should..so i make a bunch of changes to try and counter act the fact that the HB hook hasn't worked..confusion sets in and..I am chasing my tail lol..I wish there was a "Sorry the HB hook has failed, all your auras are farked...please restart world of warcraft and HB"

I have run so many LFR's i think everyone knows me by name LoL....
 
I got some beer, no school tomorrow and I'm about to test this bad boy out. Which class you want me to try? I got them all. :)

Nice Ama! enjoy your days off mate :D Test away...Holy Priest hasn't been touched but the rest should be usable...what's difficult with a full BT healing implementation is getting everything to return a failure or success...so it can get back to the top and start again...I need a RunStatus.Success/RunStatus.Failure/ RunStatus.Running logger for each Composite to find out what stops it from returning to the top of the tree...thinking out loud again...might go watch a movie and have a think..
 
Just finished 2 healing 10 man madness with Atonement spec. I can say that it is vastly improved.
 
Just finished 2 healing 10 man madness with Atonement spec. I can say that it is vastly improved.

How did it perform..im guessing no one said you were AFK =)

Does it heal differently in 10 man than LFR?


edit: I just did an Ultraxion LFR with a paladin that did 15.4million heals with a HPS over 50k!!...you cant write a bot for that LoL..(if Holy Paladin then Spam Holy Radiance = true; haha)
 
Last edited:
How did it perform..im guessing no one said you were AFK =)

Does it heal differently in 10 man than LFR?


edit: I just did an Ultraxion LFR with a paladin that did 15.4million heals with a HPS over 50k!!...you cant write a bot for that LoL..

It was casting every GCD. Its a machine in a normal raid when you dont have 5 other healers trying to overheal each other. I was healing with a Holy Priest so we complemented each other very well. Was sitting at 90% mana when the fight ended.
 
Last edited:
It was casting every GCD. Its a machine in a normal raid when you dont have 5 other healers trying to overheal each other. I was healing with a Holy Priest so we complemented each other very well. Was sitting at 90% mana when the fight ended.

I knew it!

thanks for the feedback :D

EDIT: Something that strikes me...testing in LFR is probably not the best place for me...after all its setup to be EASY...I imagine those overhealers are healing more sensibly when raiding harder content :)
 
Last edited:
Looking forward to trying out Holy next!

Will be tackling Holy Priest very soon...I am not happy at all with the Holy Paladin..and want to get it as good as the DISC priest before moving on.
 
I knew it!

thanks for the feedback :D

EDIT: Something that strikes me...testing in LFR is probably not the best place for me...after all its setup to be EASY...I imagine those overhealers are healing more sensibly when raiding harder content :)

You might find it easier to heal in 5 mans since it will just be you
 
What section do you go to so you can choose to manual dispel for holy paladin.
 
What section do you go to so you can choose to manual dispel for holy paladin.

Hi xio8up, I will add a Setting in the next release to choose Automatic or Manual Dispel-ing.

greatscott-290x300.webp


I think the Holy Paladin has hit 1.21 gigawatts!!!

2.7.3 incoming with Dispel Auto Manual GUI Setting~

Change Log
-------------

Code:
* 4/7/2012 [B][2.7.3] [/B]Holy Paladin Done.

Onto the next one :)
 
Last edited:
Nice Ama! enjoy your days off mate :D Test away...Holy Priest hasn't been touched but the rest should be usable...what's difficult with a full BT healing implementation is getting everything to return a failure or success...so it can get back to the top and start again...I need a RunStatus.Success/RunStatus.Failure/ RunStatus.Running logger for each Composite to find out what stops it from returning to the top of the tree...thinking out loud again...might go watch a movie and have a think..

Yeah, you really have to think that stuff through. I banged my head on the keyboard all day for NoobRags Swtor. I'm sure apoc would facepalm if he saw what I did for every single composite...

PHP:
public override Composite SelfCheck
        {
            get 
            {
                return new Action(delegate
                {
                    if (Cast.Spell("Seethe", Me, !Me.InCombat && (Me.ForcePercent < 70 || Me.HealthPercent < 70)))
                        return RunStatus.Success;

                    return RunStatus.Failure;
                });
            }
        }
 
Could u please do the following:
- Remove every output from default window (like the target info, we get most of the info from Target Info Button), only the "[CLU Casting] insert your spell here" should be left on default logwindow
- insert the removed output to the debuglog (only when Debug is enabled)
- Move the Target Info Window to the Top of every other window (so we can see what happens in wow and interact if necessary, but we can se the window all the time)

Dunno if someone else wants this, but for debugging / analysing the behavior of CLU in some Situations i need this Target window and sometimes i'll take a look at what is casted, but the additional informations like Target Health, Difference, MaxHealth is a) not neccessary, b) consumes some performance.

P.S. Did u find the problem with the Healing CDs? I think Warlocks (Demonology) have the same Issue, after Firing our Demonform, CLU needs some time to cast soulburn / soulfire (or whatever is next in the Queue)

I think i found some minor performance issues with Demonology and Affliction Warlock (Patch for this is coming within the next days, i think tomorrow)
 
Could u please do the following:
- Remove every output from default window (like the target info, we get most of the info from Target Info Button), only the "[CLU Casting] insert your spell here" should be left on default logwindow
- insert the removed output to the debuglog (only when Debug is enabled)
- Move the Target Info Window to the Top of every other window (so we can see what happens in wow and interact if necessary, but we can se the window all the time)

Dunno if someone else wants this, but for debugging / analysing the behavior of CLU in some Situations i need this Target window and sometimes i'll take a look at what is casted, but the additional informations like Target Health, Difference, MaxHealth is a) not neccessary, b) consumes some performance.

P.S. Did u find the problem with the Healing CDs? I think Warlocks (Demonology) have the same Issue, after Firing our Demonform, CLU needs some time to cast soulburn / soulfire (or whatever is next in the Queue)

I think i found some minor performance issues with Demonology and Affliction Warlock (Patch for this is coming within the next days, i think tomorrow)

No worries Stormchasing, I was only leaving it there until the heal rotations were finished..the colours were helping me distinguish what's happening.

All done...Output has been cleaned :) Update from SVN.
 
In my opinion, use CLU or Noobrage for Resto Druid and Disc-AA Priest, ShamWoW for Resto Shaman. Couldn't tell you about Holy Pala or Holy Priest.
 
what healer CC is the best at the moment?
ShamWoW is the best, but it is only for shaman. Great Mana management, Always top healer in LFR, DS 10 and DS 25. For Disc Priest, CLU has become pretty good. For Holy Priest I use Noobrage
 
Status
Not open for further replies.
Back
Top