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

Ultimate Paladin Healer

Just ran through FL trash a few times and it worked great. Due to the changes on mana costs and so on I was a little low a few times but not too bad.. Thanks guys
 
For some reason when i run this with BGbot it makes my bot run really slow. Moving to hotspots takes a good couple of seconds making it look really bottish.
Doesnt do this with fpswares paladin cc.
 

Attachments

So i just did Shannox and Beth'tilac using this CC. Topped the healing meters. but did go oom and sometimes it seemed to react slowly, but overall its working quite well
 
How do I add accelerated corruption to the need to be dispelled immediately list?

It's cast in phase 2 of Cho'gall
 
For some reason when i run this with BGbot it makes my bot run really slow. Moving to hotspots takes a good couple of seconds making it look really bottish.
Doesnt do this with fpswares paladin cc.

same problem here
 
So, as i said I am a little busy with work in this period BUT a new revision is UP! rev 79
@kayes: copy-past the errors is giving you when opening HB so we can see what is not compiling for you pls (a full log is always welcome.. -.-)
@emmpe: ner revision has an option aura_type 0 is concentration aura, 1 is resistance aura (le me know if you need more auras..)
@jvidia: do not realy know.. log? :P
@canntball: log?
@saif: you don't i did it in this revision :P
Also, rewamped the chimaeron logic now should work realy well all 3 phases, pls try it out and let us know :)
also, i do not remeber who asked for it, now will remain seated waiting 10 sec for the well fed buff when eating :)
 
still no way to make a check to know if a unit is a tank or not without lua, pls if you use a client in a different leanguge post here how you spell TANK in you leanguage :)
 
For some reason when i run this with BGbot it makes my bot run really slow. Moving to hotspots takes a good couple of seconds making it look really bottish.
Doesnt do this with fpswares paladin cc.

same
 
@crowleys and skud: crowleys "fix" is pretty dangerous and still do not focus on what cause the issue.
i'll try to explain how the flow should work.
the cc check if he has something realy important to do (divine shilde, cleanse a CC) if not and someone is under 85 she heals, if not she use judgment, cleanse debuff ecc, if nothing of the above TopOff is called to heal people that have more then 85% hp.
for some reason sometimes all the check before topoff fails and the cc heal people on low hp with the topoff function (instead of the Healing function)
the "hack" is there to be sure that the topoff funcion, if called, heal with the right spell.
the "fix" proposed instead completely bypass the topoff funcion while tank is in combat.
what does that mean? it mean that if someone is above 85% (lets say at 86%hp) the cc will only heal him with word of glory or holy shock, effectively wasting theyr cooldown to heal someone that is quite at max hp.
if more then one people are at 86% with that "fix" the cc will casto holy shock on the first and then wait for the cooldown to came back doing nothing for the other people at 86%
so i do not suggest to use that "fix"
a better fix that comes to my mind is this
Code:
                if (!(Me.IsMoving) && tar.HealthPercent>=85)
                {
                    if (tar.HealthPercent < FL)
                    {
                        return Cast("Flash of Light", tar, 40, "Heal", "Topping people off");
                    }
                    else if (tar.HealthPercent < DL)
                    {
                        return Cast("Divine Light", tar, 40, "Heal", "Topping people off");
                    }
                    else
                    //if (tar.HealthPercent > HL)
                    {
                        //WoWMovement.Face();
                        return Cast("Holy Light", tar, 40, "Heal", "Topping people off");
                        //slog(Color.Green, "Topping off {0} at {1} %", tar.Name, Round(tar.HealthPercent));
                    }
                }
Didin't use this fix on the release couse i do not know why the Healing check fails when someone is low on hp and do not want the cc to (for some reason) completely ignore someone.
but if the "fix" proposed by crowley work then this too will work (and will work better :) )

Did you incorporate your own suggested fix into the new version?
 
@venger2005: lol nope i forgotted about it :P is incorporated now in rev 80, i'm also thinking about a possibile fix, sometimes she use flash of light even when she has 3 holy power.. have someone else noticed that too?
 
Since the rev. 80 it seems the cc response time has noticeably decreased. I watched my tanks hp sit around 30-40% for a few casts while it topped off another player that wasn't in immediate danger of dying.

Has anyone else seen this behavior?


Sorry no log but if I encounter the issue again I will post with it.
 
Bot keeps trying to Dispell hemorrhage. Dispelling in general also seems a little slow.
 
Last edited:
For some reason when i run this with BGbot it makes my bot run really slow. Moving to hotspots takes a good couple of seconds making it look really bottish.
Doesnt do this with fpswares paladin cc.

That's the CC causing that? I've been assuming it was just bgbot being faulty! I might give one of the others a try.
 
I am definitely not imagining things. Having trouble getting through Troll heroics in 353/359 gear b/c the CC reaction time seems to be SLOW. Is anyone else experiencing this? I have reinstalled HB and Pally cc. The only other cc's i have are shamwow. Everything else was deleted.
 
I am definitely not imagining things. Having trouble getting through Troll heroics in 353/359 gear b/c the CC reaction time seems to be SLOW. Is anyone else experiencing this? I have reinstalled HB and Pally cc. The only other cc's i have are shamwow. Everything else was deleted.

I ran a PUG ZA last night and didn't notice much. The group was really geared so the CC might not have been stressed enough. I will keep a closer eye tonight to see if I can notice anything.
 
Back
Top