• Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • KingWoW

    Discussion in 'Archives' started by attilio76, Nov 7, 2012.

    1. attilio76

      attilio76 Well-Known Member Buddy Store Developer

      Joined:
      May 26, 2010
      Messages:
      1,858
      Likes Received:
      34
      Trophy Points:
      48
      KingWoW support both protection and retribution paladin spec
       
    2. happyfriet

      happyfriet Active Member

      Joined:
      Jan 14, 2013
      Messages:
      1,271
      Likes Received:
      19
      Trophy Points:
      38
      This is by far the best prot pally routine for me :D since i'm using it for farming instances. Best clear evah - the healing is only a problem when my bots aren't high lvl enough yet for the instance.
      It will heal when it's around the % you put in - but when 30 % lower it will only use it about 20% of the times - the other 80% is shield of the righteous.
       
      Last edited: Apr 7, 2014
    3. Chupar

      Chupar New Member

      Joined:
      Jan 12, 2013
      Messages:
      10
      Likes Received:
      0
      Trophy Points:
      0
      Sorry mates it was my bad, probably I am blind. I have tried to use this routine in holy specialization.
       
    4. geodk

      geodk New Member

      Joined:
      Oct 8, 2013
      Messages:
      56
      Likes Received:
      0
      Trophy Points:
      0
      Hi i am a hord ret and we are just beginning to run The fallen protectors on hc. But I have a problem that I hope you can help me with. When thrown Mark of Anguish at me then the bot immediately automatically forward it to another player, how do I change it so I can manually ( use the ekstra action botten my self) do it my self. I use king wow as cc and lazyraider as botbase. Running as a ret. Hope you can help me because it makes the whole raid dies and mess up the rotation between the players that have the Mark of Anguish on them. Thx.
       
    5. attilio76

      attilio76 Well-Known Member Buddy Store Developer

      Joined:
      May 26, 2010
      Messages:
      1,858
      Likes Received:
      34
      Trophy Points:
      48
      Mark of Anguish is NOT implemented in KingWoW!
       
    6. geodk

      geodk New Member

      Joined:
      Oct 8, 2013
      Messages:
      56
      Likes Received:
      0
      Trophy Points:
      0
      Hi Attilio is that why the bot immediately automatically forward it to another player?
       
    7. Shyoden

      Shyoden New Member

      Joined:
      Oct 9, 2012
      Messages:
      377
      Likes Received:
      1
      Trophy Points:
      0
      Suddenly not working

      Hello. First off,this is the most simple and amazing routine for Ret Pallies.

      That said, mine just suddenly stopped working just on my Ret Pally (King WoW works perfectly for my Disc Priest and Frost Mage).

      I have reinstalled everything fresh and still the same. I am attaching a log in the hopes that someone can help.

      View attachment 124206

      My character just auto-attacks, nothing more.
       
    8. attilio76

      attilio76 Well-Known Member Buddy Store Developer

      Joined:
      May 26, 2010
      Messages:
      1,858
      Likes Received:
      34
      Trophy Points:
      48
      no may be some plugins or addon?
       
    9. attilio76

      attilio76 Well-Known Member Buddy Store Developer

      Joined:
      May 26, 2010
      Messages:
      1,858
      Likes Received:
      34
      Trophy Points:
      48
      Apparently cant see any problem... i will test tomorrow!
       
    10. geodk

      geodk New Member

      Joined:
      Oct 8, 2013
      Messages:
      56
      Likes Received:
      0
      Trophy Points:
      0
      Have turned all plugins off, do you then think it is lazy raider or raid bot, have usede both? Actually a pretty big problem if you run The fallen protectors on hc. Maybe others who have an idea for what it might be or how to get it to work?
       
    11. attilio76

      attilio76 Well-Known Member Buddy Store Developer

      Joined:
      May 26, 2010
      Messages:
      1,858
      Likes Received:
      34
      Trophy Points:
      48
      I usually use tyrael's basebot, but i'm pretty sure that Mark of Anguish is not coded in kingwow as any extra button use. try tyrael's may be in some LFR and let me know.
       
    12. deflama

      deflama New Member

      Joined:
      Feb 16, 2013
      Messages:
      29
      Likes Received:
      0
      Trophy Points:
      0
      Hey, been using your routine along with Tuanha's premium for prot paladin for PvE
      Since yours can be modified and tuanhas cant, ive made a few changes to some of the logic on your prot profile, i made the suggestions to Tuanha in his paladin thread but nothing has happened even tho its such a simple addition.

      I modified your EF on self slightly by using the Sacred Shield AP% increase variable function that you have. Line 599 to 618:
      Code:
      #region HEAL ME
      if (Me.Combat && ProtPaladinSettings.Instance.AutoHeal)
      {
      				
           current_AP = CurrentAttackPower();
      			
           if ((Me.CurrentHolyPower >= 3 || utils.isAuraActive(144569)) && Me.HealthPercent <= ProtPaladinSettings.Instance.HolyPowerAutoHealHP_EF_WoG)
           {
                if (utils.CanCast(ETERNAL_FLAME) && !utils.isAuraActive(ETERNAL_FLAME) && (utils.PlayerCountBuff(114637) >= 3))
                {
      	       previus_AP = current_AP;
                     utils.LogActivity(ETERNAL_FLAME + " current_AP=" + previus_AP + " I will recast it if AP>=" + previus_AP*(1+(ProtPaladinSettings.Instance.AttackPowerIncrement/100)));
                     return utils.Cast(ETERNAL_FLAME, Me);
                }
                if (utils.CanCast(ETERNAL_FLAME) && utils.isAuraActive(ETERNAL_FLAME) && (utils.PlayerCountBuff(114637) >= 3) && (current_AP >= (previus_AP * (1 + (ProtPaladinSettings.Instance.AttackPowerIncrement / 100)))))
                {
      	       previus_AP = current_AP;
                     utils.LogActivity(ETERNAL_FLAME + " RECAST: previus_AP=" + previus_AP + "    current_AP=" + current_AP);
      	       previus_AP = current_AP;
                     return utils.Cast(ETERNAL_FLAME, Me);
                }
      
      This should use EF when 3 or more HoPo OR when you have 4pc T16 active and HP is below the auto heal EF % and when 3 or more bastion stacks (can change this to 5 but i still need to test the code)
      It will also use the SS ap% variable in setting to recast EF if you AP reaches that variable increase (with HoPo >=3 or 4pc active AND bastion stacks >=3 AND HP is below threshold) whether EF is currently active or not

      Line 726 changed to:
      Code:
      if (utils.CanCast(HAMMER_OF_RIGHTEOUS, target, true) && (AOE))
      {
           utils.LogActivity(HAMMER_OF_RIGHTEOUS, target.Name);
           return utils.Cast(HAMMER_OF_RIGHTEOUS, target);
      }
      
      This removes the use of Hammer of the righteous to apply weakened blows at the start of a fight, since crusader strike does this aswell now

      So i think ive got this right but needs a bit more testing lol.

      Seperate variables arent needed for SS and EF as you can only have 1 active of the 2 talents.
      A variable to choose Bastion stacks would be awesome as well as a variable for the Holy Power to use it at.

      Also i dont know the code to check if the Eternal flame is yours or it has been casted on you by someone else (dont know if that matters tho) if its possible?

      If theres anything else i can think of and work out ill edit this post or make a new one.

      Many thanks
       
    13. attilio76

      attilio76 Well-Known Member Buddy Store Developer

      Joined:
      May 26, 2010
      Messages:
      1,858
      Likes Received:
      34
      Trophy Points:
      48
      @deflama
      Ty for your code snippets i will test and add next release with a variable to choose Bastion stacks!
       
    14. InvisionedDeath

      InvisionedDeath New Member

      Joined:
      May 3, 2014
      Messages:
      7
      Likes Received:
      0
      Trophy Points:
      0
      This is a Fantastic profile! Thank you! My Dps raised from a mere 30k (Don't judge) to a close 60k The raise isn't to high, but my Ilvl is only 493! So all in all once that is raised im projecting HIGH numbers!
       
    15. attilio76

      attilio76 Well-Known Member Buddy Store Developer

      Joined:
      May 26, 2010
      Messages:
      1,858
      Likes Received:
      34
      Trophy Points:
      48
      SVN UPDATE:
      Improvement for movement: now in CC Utility setting you can enable/disable movement for all Botbase (defalut is disabled).
      This update give you possibility to use CC with solable botbase as Dungeonbuddy without use any plugins.
       
    16. attilio76

      attilio76 Well-Known Member Buddy Store Developer

      Joined:
      May 26, 2010
      Messages:
      1,858
      Likes Received:
      34
      Trophy Points:
      48
      SVN UPDATE:
      Auto CC update (ty to Supebad routine for some code inspiration)

      ZIP File update
       
    17. Str0be

      Str0be New Member

      Joined:
      Aug 11, 2012
      Messages:
      24
      Likes Received:
      0
      Trophy Points:
      0
      Combat rogue routine works very well so far, only problem is it keeps spamming stealth over and over, aka stealthing me, then immediately unstealthing me, even if I have stay stealth enabled, or disabled. IN LFR ATM Testing the routine.
       
    18. Feralbynight

      Feralbynight New Member

      Joined:
      Dec 13, 2011
      Messages:
      1
      Likes Received:
      0
      Trophy Points:
      0
      any plans to add holy paladin to this?
       
    19. chinajade

      chinajade Well-Known Member Moderator Buddy Core Dev

      Joined:
      Jul 20, 2010
      Messages:
      17,540
      Likes Received:
      172
      Trophy Points:
      63
      Thread closed and archived at Attilio's request.

      He is now offering the products through the Buddy Store. And, the corresponding threads are now in the Buddy Store sub-forum.

      cheers,
      chinajade
       

    Share This Page