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

UPaCCBT: The BehaviourTree Ultimate Paladin Healer Custom Class

Status
Not open for further replies.
sorry but this will take a while :)
I'm still supporting this one, but i'm very busy on the one hand, and very frustrated of the many redundant and inefficient code.
Everytime i change one thing, i've many sideeffects -> my rewrite goes in this direction to avoid this sideeffects.
I wanna have back the good old performance too :)
 
But u can try an improvement to Singular from Obliv, who has publicated it.
This is not as much configurable than UltimateHealer, but should atm perform much better than this, for raiding

Anyone can share there experiences with this holy cc and how it performs in 2v2/3v3 arena + DS raids?
 
if u read the last 20 sites some guys reported turning off is not working and storm will look at it
Last 20 sites? what does that even mean?

Anyways, Stormchasing, is there currently any solution to disable holy light completely for arenas? Even if it means commenting out some code (which I will gladly do myself if shown what to comment out).
Again, much love to you for working on this CC in the absence of Gilderoy. Will +rep for you again as soon as I can give it to you.
 
Just a thing I'm noticing, and it probably a error on my part, but some reason the bot seems more focused on killing the opposing faction(BG's) then it does healing it ally's, even when they are near.
How do I fix it so it prioritizes healing over DPS?
 
Is there any way to use the Solo behaviour while soloing raids with this CC? The solo behaviour is decent as I've tested it on mobs outside of instances/dungeons/parties. But the CC always use the Raid behaviour whenever I'm in a raid. I've tried editing some of the files, but I get so many errors haha
 
Is there any way to use the Solo behaviour while soloing raids with this CC? The solo behaviour is decent as I've tested it on mobs outside of instances/dungeons/parties. But the CC always use the Raid behaviour whenever I'm in a raid. I've tried editing some of the files, but I get so many errors haha
no way atm ...
i'm in progress of a complete rewrite, i'll keep this in mind for a later time, but for now there's no possibility to force solo behavior in a raid
 
Just a thing I'm noticing, and it probably a error on my part, but some reason the bot seems more focused on killing the opposing faction(BG's) then it does healing it ally's, even when they are near.
How do I fix it so it prioritizes healing over DPS?

try to disable the dps part (this can be done be changing the setting via ui)
 
Have you figured out judgement? I noticed Me.activeauras will not contain "judgements of the pure" even when the player has the aura.
 
no way atm ...
i'm in progress of a complete rewrite, i'll keep this in mind for a later time, but for now there's no possibility to force solo behavior in a raid

I'm sure there's a proper way to do it. The CC uses a check that if you're in a raid, the code will direct you to the Raid behaviour.

So basically, I've had changed from "Raid" to "Solo" inside this check: if ((Me.IsInInstance) && (Me.IsInRaid) then
Then I tested it in raid, the CC now uses Solo behaviour but then I'm getting one continuous error... which says something like "New Trinket found, trying to use it" or something like that. and then the CC crashed.

I'm really desperate to do this. Please help me :( I'll be happy to donate!
 
Last edited:
I'm sure there's a proper way to do it. The CC uses a check that if you're in a raid, the code will direct you to the Raid behaviour.

So basically, I've had changed from "Raid" to "Solo" inside this check: if ((Me.IsInInstance) && (Me.IsInRaid) then
Then I tested it in raid, the CC now uses Solo behaviour but then I'm getting one continuous error... which says something like "New Trinket found, trying to use it" or something like that. and then the CC crashed.

I'm really desperate to do this. Please help me :( I'll be happy to donate!

I know you are hoping to get this done with this CC but if it can't be done anytime soon, I can tell you that when I go in old raids with my pally, I use EzRet and he is a monster... just letting you know that if you're dual spec'd as Ret, that it's an option...
 
I'm sure there's a proper way to do it. The CC uses a check that if you're in a raid, the code will direct you to the Raid behaviour.

So basically, I've had changed from "Raid" to "Solo" inside this check: if ((Me.IsInInstance) && (Me.IsInRaid) then
Then I tested it in raid, the CC now uses Solo behaviour but then I'm getting one continuous error... which says something like "New Trinket found, trying to use it" or something like that. and then the CC crashed.

I'm really desperate to do this. Please help me :( I'll be happy to donate!

it seems like u have messed up the code when it was working before, because the code for trinkets has absolutely nothing to do with switching the healbehaviors (really !!! nothing
if really want to change the behavior to only use Solo at certain points (i dunno why u wanna do that but ok)
- revert back your change (for example by checking out again from svn)
- look at composite.cs and search for public Composite Composite_Selector() (should be line 2705) here are all switches done
so if you wanna use solo instead of party / raid:
- search for
PHP:
                new SwitchArgument<string>("Party or Raid",
                Composite_Party_or_Raid()
                ),
replace with
PHP:
                new SwitchArgument<string>("Party or Raid",
                //Composite_Party_or_Raid()
                Composite_Solo()
                ),

this will switch party and raid to solo, for reverting back to normal acting -> replace "//" with "" and set "//" in front of composite_solo

P.S. i do not provide any support for such changes
 
I tested this CC(+LazyRaider) today with my full Bloodthirsty Paladin in 3 BGs so far and I have to admit I'm pretty damn impressed how awesome this works. I knew that it was possible to write some pretty good CCs for damage dealers, but I would have never thought healing can be done this good. It's like watching somebody heal that is really motivated and just chugged down 3 cups of coffee.

Thank you for this and keep up the good work,
cazma
 
a little update at this point
i've nearly done the rewrite of the config form
Todo:
- Clear up used variables
- rewrite healing

as u can see the config is now equal to singular, it is one of the efficients ways to display all the stuff, but i'll separate some more settings in different tabs, because there are so much settings ... u'll find different tabs for pvp,solo,dungeon,raid,arena, battleground, dispelling and so on ... all what u've seen before the rewrite
 

Attachments

  • UltimateHealer_General.webp
    UltimateHealer_General.webp
    21.2 KB · Views: 96
  • UltimateHealer_Paladin.webp
    UltimateHealer_Paladin.webp
    15.6 KB · Views: 86
  • UltimateHealer_Priest.webp
    UltimateHealer_Priest.webp
    20.8 KB · Views: 66
Last edited:
Can't wait for the healing rework Stormchasing. Keep up the good work, it's much appreciated!
 
it seems like u have messed up the code when it was working before, because the code for trinkets has absolutely nothing to do with switching the healbehaviors (really !!! nothing
if really want to change the behavior to only use Solo at certain points (i dunno why u wanna do that but ok)
- revert back your change (for example by checking out again from svn)
- look at composite.cs and search for public Composite Composite_Selector() (should be line 2705) here are all switches done
so if you wanna use solo instead of party / raid:
- search for
PHP:
                new SwitchArgument<string>("Party or Raid",
                Composite_Party_or_Raid()
                ),
replace with
PHP:
                new SwitchArgument<string>("Party or Raid",
                //Composite_Party_or_Raid()
                Composite_Solo()
                ),

this will switch party and raid to solo, for reverting back to normal acting -> replace "//" with "" and set "//" in front of composite_solo

P.S. i do not provide any support for such changes

Thanks, but now the CC won't use exorcism :( Hmm, not sure why.

Also, good work with the rewrite CC.
 
I had problems when trying to use cc with LFR today. This is my first time using this cc with raid. It works well with bgs, 5 mans.
I attached an errors log here. thanks
 

Attachments

Status
Not open for further replies.
Back
Top