• Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • UPaCCBT: The BehaviourTree Ultimate Paladin Healer Custom Class

    Discussion in 'Archives' started by Gilderoy, Jul 17, 2011.

    Thread Status:
    Not open for further replies.
    1. Stormchasing

      Stormchasing Community Developer

      Joined:
      Jan 15, 2011
      Messages:
      4,029
      Likes Received:
      48
      Trophy Points:
      48
      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 :)
       
    2. RckStar

      RckStar Member

      Joined:
      Feb 8, 2010
      Messages:
      223
      Likes Received:
      0
      Trophy Points:
      16
      Anyone can share there experiences with this holy cc and how it performs in 2v2/3v3 arena + DS raids?
       
    3. solo1420

      solo1420 Member

      Joined:
      Oct 13, 2011
      Messages:
      307
      Likes Received:
      0
      Trophy Points:
      16
      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.
       
    4. Domuk

      Domuk New Member

      Joined:
      Dec 31, 2011
      Messages:
      60
      Likes Received:
      2
      Trophy Points:
      0
      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?
       
    5. JeffKing1989

      JeffKing1989 New Member

      Joined:
      Feb 16, 2010
      Messages:
      87
      Likes Received:
      0
      Trophy Points:
      0
      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
       
    6. Stormchasing

      Stormchasing Community Developer

      Joined:
      Jan 15, 2011
      Messages:
      4,029
      Likes Received:
      48
      Trophy Points:
      48
      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
       
    7. Stormchasing

      Stormchasing Community Developer

      Joined:
      Jan 15, 2011
      Messages:
      4,029
      Likes Received:
      48
      Trophy Points:
      48
      try to disable the dps part (this can be done be changing the setting via ui)
       
    8. Ama

      Ama New Member

      Joined:
      Jun 6, 2011
      Messages:
      1,171
      Likes Received:
      33
      Trophy Points:
      0
      Have you figured out judgement? I noticed Me.activeauras will not contain "judgements of the pure" even when the player has the aura.
       
    9. JeffKing1989

      JeffKing1989 New Member

      Joined:
      Feb 16, 2010
      Messages:
      87
      Likes Received:
      0
      Trophy Points:
      0
      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: Jan 17, 2012
    10. Altoids

      Altoids New Member

      Joined:
      Jul 21, 2011
      Messages:
      936
      Likes Received:
      8
      Trophy Points:
      0
      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...
       
    11. Stormchasing

      Stormchasing Community Developer

      Joined:
      Jan 15, 2011
      Messages:
      4,029
      Likes Received:
      48
      Trophy Points:
      48
      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
       
    12. cazma12

      cazma12 New Member

      Joined:
      Jan 14, 2012
      Messages:
      16
      Likes Received:
      1
      Trophy Points:
      0
      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
       
    13. Stormchasing

      Stormchasing Community Developer

      Joined:
      Jan 15, 2011
      Messages:
      4,029
      Likes Received:
      48
      Trophy Points:
      48
      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
       

      Attached Files:

      Last edited: Jan 17, 2012
      Altoids likes this.
    14. neodite

      neodite New Member

      Joined:
      Oct 12, 2010
      Messages:
      498
      Likes Received:
      3
      Trophy Points:
      0
      GJ Storm. Seems to be comming along nicely
       
    15. RckStar

      RckStar Member

      Joined:
      Feb 8, 2010
      Messages:
      223
      Likes Received:
      0
      Trophy Points:
      16
      Can't wait for the healing rework Stormchasing. Keep up the good work, it's much appreciated!
       
    16. Altoids

      Altoids New Member

      Joined:
      Jul 21, 2011
      Messages:
      936
      Likes Received:
      8
      Trophy Points:
      0
      Thanks Storm - all your hard work is VERY MUCH appreciated! +rep
       
    17. bustahwolf

      bustahwolf New Member

      Joined:
      Dec 10, 2011
      Messages:
      45
      Likes Received:
      0
      Trophy Points:
      0
      Really awesome dude. Thanks for your hardwork.
       
    18. JeffKing1989

      JeffKing1989 New Member

      Joined:
      Feb 16, 2010
      Messages:
      87
      Likes Received:
      0
      Trophy Points:
      0
      Thanks, but now the CC won't use exorcism :( Hmm, not sure why.

      Also, good work with the rewrite CC.
       
    19. serowix

      serowix Member

      Joined:
      Feb 4, 2011
      Messages:
      136
      Likes Received:
      0
      Trophy Points:
      16
      I mean the last 10-20 Pages not Sites
       
    20. darkuz

      darkuz Member

      Joined:
      Oct 19, 2011
      Messages:
      30
      Likes Received:
      0
      Trophy Points:
      6
      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
       

      Attached Files:

    Thread Status:
    Not open for further replies.

    Share This Page