• Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Unholywrath: Blood/Frost/Unholy PVE Bot

    Discussion in 'Archives' started by ossirian, Mar 26, 2012.

    1. Nora

      Nora New Member

      Joined:
      Apr 29, 2012
      Messages:
      28
      Likes Received:
      1
      Trophy Points:
      0
      Hello ;)

      I'm pretty new to HB and thanks for your CC, it's wonderful :)

      I just started using Unholywrath for the first time during a regular 10m DS raid and it was pretty fun. I used LazyRaider to pause and start my rotations and also experienced the Hax.lua error, though if I paused and started it up again, it would go away mostly.

      My DPS went up quite a bit, I love not having to think about my rotation during the fight lol, but the only thing I noticed, is during Madness, it was using Mind Freeze and Strangulate on the Mutated Corruption and Elementium Bolt. Not sure how to change this?

      As described a few posts earlier, disabling the trinkets/dps buffs is a good idea. For instances like Spine, I'd like to use a FU-up macro to min/max my DPS instead ... but checkboxes disabling these spells/trinkets/dps boosts would be a good idea too :)

      Thanks again for a great CC, I really enjoyed it!
       
    2. ossirian

      ossirian New Member

      Joined:
      May 5, 2011
      Messages:
      241
      Likes Received:
      5
      Trophy Points:
      0
      Well i do not know how to create gui etc yet so that will need to wait.

      you could use a trigger key for the cds by //commenting out major cd like unholy frenzy or pillar of frost.

      you can also comment out the interrupt lines.

      do this by:

      1. right click Unholywrath.cs and select "edit"
      2. hold ctrl-f then type the name of the spell you wish to edit.
      3.to sto the cc from using the spell, simply add "//" at the start of the line
       
    3. koadan

      koadan New Member

      Joined:
      Mar 2, 2012
      Messages:
      13
      Likes Received:
      1
      Trophy Points:
      0
      great CC

      Hi, I really really like your CC... You said though that it can be customized a bit.... So how can I put obliterate on a higher prio then howling blast.
      Since it spams howling blast while obliterate is up with killing machine...Any help on that or is there a topic where you can see how to do this?
      Thanks in advance,

      Koadan

      edit: I've been looking in the cc and I see 2 types of frost, masterfrost wich you noted at the description and obliterate frost... So this is what I should want.
      And as it's using masterfrost... How do I make it go obliterate frost? Sorry if I'm asking stupid questions...:S
       
      Last edited: Jul 26, 2012
    4. ossirian

      ossirian New Member

      Joined:
      May 5, 2011
      Messages:
      241
      Likes Received:
      5
      Trophy Points:
      0


      you notice that the hastefrost part has:

      //
      //
      //
      //
      all down the edge?

      you need to remove all of those and put them in a similar place next to the masterfrost section.

      then it will run the haste-obliterate rotation.
       
    5. sjussju

      sjussju New Member

      Joined:
      May 14, 2012
      Messages:
      16
      Likes Received:
      0
      Trophy Points:
      1
      Would you be opposed to me creating a UI for this CC? This is currently my favorite CC for specifically Unholy spec raiding after a few minor tweaks and I'm sure others would love to be able to change settings in-honorbuddy class config as well.
       
      Last edited: Jul 26, 2012
    6. ossirian

      ossirian New Member

      Joined:
      May 5, 2011
      Messages:
      241
      Likes Received:
      5
      Trophy Points:
      0
      if i knew how to i would.

      i dont know how to do it so i can't i'm afraid.
       
    7. sjussju

      sjussju New Member

      Joined:
      May 14, 2012
      Messages:
      16
      Likes Received:
      0
      Trophy Points:
      1
      Here's a version of Unholywrath with a UI added solely for the Unholy spec for config. If anyone wants I can do tabs for Blood/Frost this weekend.

      Keep in mind this will only configure the Unholy spec, none of these options will work if you are in Blood or Frost atm.

      View attachment Unholywrath.zip
      [​IMG]
       
      Last edited: Jul 26, 2012
    8. Nora

      Nora New Member

      Joined:
      Apr 29, 2012
      Messages:
      28
      Likes Received:
      1
      Trophy Points:
      0
      Code:
      SC.CastBuff("Raise Dead", a => SC.PlayerHasBuff("Pillar of Frost")
      && SC.PlayerHasBuff("Unholy Strength")
      && SC.PlayerHasBuff("Titanic Strength"), "--Raise Dead"),
      Hello :)

      I'm just wanting to customize this a bit ... is there a way to tell this that it's 10 stacks of Titanic Strength?

      I've tried adding = 10 or => 10 and it throws errors at me :(
       
    9. sjussju

      sjussju New Member

      Joined:
      May 14, 2012
      Messages:
      16
      Likes Received:
      0
      Trophy Points:
      1
      Hey Nora,

      SC's PlayerHasBuff behavior will only return a bool based on whether or not you have more than 0 seconds left on the buff.

      The SimCraftBase.cs file that was packaged with Unholywrath doesn't have any behaviors to count the # of stacks of a Buff on yourself, but if you dl the SimCraftBase.cs I've attached to this post and replace your SimCraftBase.cs file with it then you should be able to use:

      Code:
      SC.CastBuff("Raise Dead", a => SC.PlayerHasBuff("Pillar of Frost")
      && SC.PlayerHasBuff("Unholy Strength")
      && SC.PlayerCountBuff("Titanic Strength") >= 10, "--Raise Dead"),
      Hope that helps
       

      Attached Files:

      Last edited: Jul 27, 2012
    10. ossirian

      ossirian New Member

      Joined:
      May 5, 2011
      Messages:
      241
      Likes Received:
      5
      Trophy Points:
      0
      unfortunately this will not work as blizzard kindly named the Fallaen crusader proc the same name. I have looked into it before but i cannot do it unless anything has changed.
       
      Last edited: Jul 27, 2012
    11. ossirian

      ossirian New Member

      Joined:
      May 5, 2011
      Messages:
      241
      Likes Received:
      5
      Trophy Points:
      0

      Dude you are a legend, if you can do this, PM me the full working 3 spec or link it here and i'll update the thread.

      Kudos and BIIG credit to this guy!!!! please scroll up and 'like' his post!
       
    12. sjussju

      sjussju New Member

      Joined:
      May 14, 2012
      Messages:
      16
      Likes Received:
      0
      Trophy Points:
      1
      I believe Fallen Crusader proc is called "Unholy Strength" and the "Titanic Strength" comes from the trinket Eye of the Unmaking. I tested with PlayerCountBuff in Unholy spec waiting for 10 stacks of Titanic Strength and PlayerHasBuff for Unholy Strength and it works fine waiting to cast, though I don't have a frost spec so I couldn't test with Pillar of Frost.

      Edit: Also, I'll definitely PM you UI version with all 3 specs sometime this weekend, maybe later today if I have some free time after I get off work tonight. :)

      Edit2: Aso, a tip for Nora your Raise Dead should check for "!SimCraftBase.Me.GotAlivePet" because otherwise it will try to spam that spell anytime it's off cooldown and you have unholy strength/pillar of frost/titanic strength x 10, and if Ghoul is already out you can't resummon without dismissing first. Or you could have the CC dismiss the pet first if it is already there and then cast Raise Dead again if you want it to recast every time it's off CD and you have those buffs.
       
      Last edited: Jul 27, 2012
    13. ossirian

      ossirian New Member

      Joined:
      May 5, 2011
      Messages:
      241
      Likes Received:
      5
      Trophy Points:
      0
      meh it muct have been the trinket i was using or something then cos i distinctly remember swearing at blizzard!

      i just tried to piggy back the unholywrathform you did to see if i could use it on my rogue cc and just do a simple trinket checkbox, it compiles fine as i remamed it to Felmaster rather than the Unholywrath, but for some reason the button doesnt work. drat to not knowing wtf i'm doing lol

      speak to you later sjussju
       
    14. sjussju

      sjussju New Member

      Joined:
      May 14, 2012
      Messages:
      16
      Likes Received:
      0
      Trophy Points:
      1
      At work now, but if you PM me what you did with your rogue cc to me I'll check it when I get the chance.
       
    15. ossirian

      ossirian New Member

      Joined:
      May 5, 2011
      Messages:
      241
      Likes Received:
      5
      Trophy Points:
      0
      legend, thats all i'm saying.

      legend...
       
    16. Nora

      Nora New Member

      Joined:
      Apr 29, 2012
      Messages:
      28
      Likes Received:
      1
      Trophy Points:
      0
      It did help! After figuring it out and putting in that Pet checker, tested it out in LFR and works great! Thanks so much! <3

      Now to figure out why Mind Freeze and Strangulate fire on the Madness fight, it wants to interrupt the Mutated Corruption and Elementium Bolt, and pretty much any add.
       
    17. sjussju

      sjussju New Member

      Joined:
      May 14, 2012
      Messages:
      16
      Likes Received:
      0
      Trophy Points:
      1
      [​IMG]

      Alright guys here's the version with all 3 specs in the UI. It will automatically load the UI for your current spec, but you can switch between them with the spec buttons as well. My deathknight doesn't use a frost spec and I mainly use this CC for unholy so someone else will have to test the frost spec UI.

      Hope you enjoy it :)

      Also, make sure your folder in your "CustomClasses" folder is called "Unholywrath".


      Edit: fixed Unholy Raise Dead and Blood Lichborne not saving.
       

      Attached Files:

      Last edited: Jul 28, 2012
    18. boofoo

      boofoo New Member

      Joined:
      May 19, 2010
      Messages:
      51
      Likes Received:
      0
      Trophy Points:
      0
      Just started using this CC, I am in love. Any thoughts on including racials(orc) and keeping them on cooldown?
       
    19. kiekie

      kiekie New Member

      Joined:
      Mar 30, 2012
      Messages:
      156
      Likes Received:
      0
      Trophy Points:
      0
      what do i put the settings to on lazyraider? i got them set to max DPS so 60 fps, frame lock on, should i turn frame lock off or keep it on?
       
    20. ossirian

      ossirian New Member

      Joined:
      May 5, 2011
      Messages:
      241
      Likes Received:
      5
      Trophy Points:
      0

    Share This Page