• Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Lazyraider - Plagueheart

    Discussion in 'Archives' started by Shaddar, Jan 13, 2012.

    1. Shaddar

      Shaddar Active Member

      Joined:
      Mar 23, 2011
      Messages:
      719
      Likes Received:
      56
      Trophy Points:
      28
      Lazyraider - Plagueheart a Destruction Warlock CC

      Thanks to xLegendx, Stree, Daorigin,CodenameG, Nomnomnom, Mahe4, Jasf10, Jvidia, Mastagh, Fiftypence,No1knowsy and Legaston
      for helping me out with some of the codes and ideas on how to improve Plagueheart/Pyromancer/Bowman/Titan Arms/Avenger!​



      Destruction
      Source: Elitist Jerks - Mmo Champion - Noxxic

      Destruction Warlock Talent Build
      Intellect > Spell Hit Cap (17%) > Haste > Crit > Mastery
      [​IMG]

       

      Attached Files:

      Last edited: Feb 16, 2012
      sevaa and AtticusG3 like this.
    2. dred

      dred Member

      Joined:
      Aug 14, 2011
      Messages:
      48
      Likes Received:
      0
      Trophy Points:
      6
      good luck cant wait to test it
       
    3. Ama

      Ama New Member

      Joined:
      Jun 6, 2011
      Messages:
      1,171
      Likes Received:
      33
      Trophy Points:
      0
      you can try blacklisting the spell for a second or so
       
    4. Shaddar

      Shaddar Active Member

      Joined:
      Mar 23, 2011
      Messages:
      719
      Likes Received:
      56
      Trophy Points:
      28
      Frequently asked questions

      Why doesnt my bot work/ why does it only cast a few spells?
      I only support the English WoW client. So if you're using a German/Russian/French etc WoW client this CC will not work for you.

      Can you add a GUI so I can configure whether i want to use AoE or CD's or not?
      No.

      Does this CC work for us under level 85?
      I wouldn't recommend using it when your not level 85. This CC is for raiding and dungeon purposes at 85.


      Which bot do i use this CC with?
      http://www.thebuddyforum.com/honorb...ontrolled-raiding-heroics-raf.html#post271577 <-- that one.
       
      Last edited: Jan 24, 2012
    5. Ama

      Ama New Member

      Joined:
      Jun 6, 2011
      Messages:
      1,171
      Likes Received:
      33
      Trophy Points:
      0
      I dont really know how Blacklist.add works. Maybe that isnt a good solution to look for.

      Which spells are the ones that are acting up? instant casts?
       
    6. Shaddar

      Shaddar Active Member

      Joined:
      Mar 23, 2011
      Messages:
      719
      Likes Received:
      56
      Trophy Points:
      28
      Every spell that is supposed to give a Debuff or a Buff. As in Elemental Weakness, Corruption, Immolate, Bane of Doom and Soul Fire(Improved Soul Fire Buff).
       
    7. Ama

      Ama New Member

      Joined:
      Jun 6, 2011
      Messages:
      1,171
      Likes Received:
      33
      Trophy Points:
      0
      ok... I think this isnt a problem with other CCs you have made b/c the debuff spell had a cd. I think you will need to implement some sort of last cast to solve your problem.


      or you could implement your own form of cooldowns with timers. Its annoying, but solutions that slow your rotation down(like sleep) arent good ones IMO.
       
      Last edited: Jan 14, 2012
    8. Megser

      Megser Well-Known Member

      Joined:
      Apr 17, 2010
      Messages:
      1,389
      Likes Received:
      73
      Trophy Points:
      48
      This is the case with Singular and hunter's serpent sting. If the hunter is far away when he casts serpent sting the bot will ALWAYS double-cast it. Maybe it checks if the debuff is applied too early or something.
       
    9. Shaddar

      Shaddar Active Member

      Joined:
      Mar 23, 2011
      Messages:
      719
      Likes Received:
      56
      Trophy Points:
      28
      Ive tried the LastCast code, if i did it right that is.
      And it didnt work as i thought it would, it made me either spam or not cast any spells at all.
       
    10. Ama

      Ama New Member

      Joined:
      Jun 6, 2011
      Messages:
      1,171
      Likes Received:
      33
      Trophy Points:
      0
      try the timer thing. put your own 1 second cd on your instant cast debuff spells.
       
    11. Ama

      Ama New Member

      Joined:
      Jun 6, 2011
      Messages:
      1,171
      Likes Received:
      33
      Trophy Points:
      0
      something like this...


      Code:
      List<Stopwatch> debuffCooldowns;
      Stopwatch _immolate = new Stopwatch();
      
      public override void Pulse()
      {
                  if (debuffCooldowns == null)
                  {
                      debuffCooldowns = new List<Stopwatch>();
                      debuffCooldowns.Add(_immolate);
      
                  }
      }
      
      public override void Combat()
      {
                  foreach(Stopwatch s in debuffCooldowns)
                  {
                      if (s.Elapsed.Seconds > 1)
                      {
                          s.Stop();
                          s.Reset();
                      }
                  }
      
                  if (!_immolate.IsRunning)
                  {
                      Cast("Immolate", target);
                      _immolate.Start();
                  }
      }
      
      
       
    12. Shaddar

      Shaddar Active Member

      Joined:
      Mar 23, 2011
      Messages:
      719
      Likes Received:
      56
      Trophy Points:
      28
      You are brilliant Jasf, at first glance it looks amazing. Ive added Bane of Doom, Corruption and Immolate and it works like a charm. Lets hope it stays that way!

      Nothing less expected off someone like yourself :)

      One step closer to releasing then.
       
    13. Ama

      Ama New Member

      Joined:
      Jun 6, 2011
      Messages:
      1,171
      Likes Received:
      33
      Trophy Points:
      0
      Awesome dude! I was thinking about raiding with my warlock when I hit 85. This is going to be cool
       
    14. Shaddar

      Shaddar Active Member

      Joined:
      Mar 23, 2011
      Messages:
      719
      Likes Received:
      56
      Trophy Points:
      28
      if this CC turns out to be good at all that is :p
       
    15. Shaddar

      Shaddar Active Member

      Joined:
      Mar 23, 2011
      Messages:
      719
      Likes Received:
      56
      Trophy Points:
      28
      edit.
       
      Last edited: Jan 15, 2012
    16. xLegendx

      xLegendx Active Member

      Joined:
      Apr 25, 2010
      Messages:
      1,050
      Likes Received:
      1
      Trophy Points:
      38
      There was a poll? o.o
      lol


      And great work Shaddar. I really appreciate it.
       
    17. Shaddar

      Shaddar Active Member

      Joined:
      Mar 23, 2011
      Messages:
      719
      Likes Received:
      56
      Trophy Points:
      28
      Alpha version of Plagueheart has now been released.

      Enjoy.
       
    18. Stormchasing

      Stormchasing Community Developer

      Joined:
      Jan 15, 2011
      Messages:
      4,029
      Likes Received:
      48
      Trophy Points:
      48
      u got a little issue in this Alpha
      AOE rotation, it is nice that u implemented this BUUUUUUUUUUUUUUUUUUUUUUT ! ;)
      PHP:
      adds.Count 2
      should be
      PHP:
      adds.Count 2
      i tested the change and it pushed me from 7 to 12k ;) (yes my wl is very bad equipped)
       
      Last edited: Jan 15, 2012
    19. Shaddar

      Shaddar Active Member

      Joined:
      Mar 23, 2011
      Messages:
      719
      Likes Received:
      56
      Trophy Points:
      28
      Oh /facepalm, i must of forgot to change back < to > when i was testing out the AoE rotation on dummies. Ill fix that right away

      EDIT: Fixed.
       
      Last edited: Jan 15, 2012
    20. Stormchasing

      Stormchasing Community Developer

      Joined:
      Jan 15, 2011
      Messages:
      4,029
      Likes Received:
      48
      Trophy Points:
      48
      i'll rework some of the spells used, it does unefficient damage on adds in dungeons, and uses bane of doom instead of bane of agony on mobs that never will live longer than 30 secs
      it cancels rain of fire after one or two ticks and something more
       

    Share This Page