• Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Warrior SELFHEAL problem Solved !!!

    Discussion in 'Archives' started by mondblume, Oct 5, 2012.

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

      justjames Member

      Joined:
      Mar 13, 2010
      Messages:
      115
      Likes Received:
      2
      Trophy Points:
      18
      Wow, super easy fix. Thank you sir.
       
    2. Ser_FENIX

      Ser_FENIX New Member

      Joined:
      Dec 8, 2011
      Messages:
      82
      Likes Received:
      0
      Trophy Points:
      0
      My warrior never eat a food at questing bot, dungeon bot or grind bot...problem with cc? NEED HELP!
       
    3. benj180

      benj180 Member

      Joined:
      Jan 15, 2010
      Messages:
      142
      Likes Received:
      1
      Trophy Points:
      18
      Awesome job dude, appreciated, farming is a little easier now. I really should take the time to understand how to edit these myself :)

      Any chance you could see why Singular Arms doesn't aoe? ;)
       
    4. mondblume

      mondblume New Member

      Joined:
      Mar 4, 2012
      Messages:
      25
      Likes Received:
      0
      Trophy Points:
      0
      @benj180 u can easy change this by your self just open the file whith Word editor and go to


      Spell.Cast("Impending Victory"),
      Spell.Cast("Mortal Strike"),
      Spell.Cast("Colossus Smash", ret => !StyxWoW.Me.CurrentTarget.HasMyAura("Colossus Smash")),

      you only need to add the spellname you want to use in the rotation !!
      just add one more Spell Cast like ...


      Spell.Cast("Impending Victory"),
      Spell.Cast("enter spellname here"),
      Spell.Cast("Mortal Strike"),
      Spell.Cast("Colossus Smash", ret => !StyxWoW.Me.CurrentTarget.HasMyAura("Colossus Smash")),
       
    5. benj180

      benj180 Member

      Joined:
      Jan 15, 2010
      Messages:
      142
      Likes Received:
      1
      Trophy Points:
      18
      Cool, thanks man :) Any way to add triggers like if more than so many mobs etc?
       
    6. evilme73

      evilme73 New Member

      Joined:
      Jan 6, 2012
      Messages:
      100
      Likes Received:
      4
      Trophy Points:
      0
      I also recommend adding the following lines above your victory rush addition, to increase your bots uptime and reduce deaths:

      Spell.Cast("Dragon Roar", ret => Unit.UnfriendlyUnitsNearTarget(10f) >= 3), // Only add this line if you have Dragon Roar talented.
      Spell.Cast("Die by the Sword", ret => Unit.UnfriendlyUnitsNearTarget(10f) >= 3),
      Spell.Cast("Sweeping Strikes", ret => Unit.UnfriendlyUnitsNearTarget(10f) >= 2),

      You may need to add the following to the top of your file (where the rest of the "using blah.blah;" is) to get those lines to work though:
      using Styx.WoWInternals.WoWObjects;
      using CommonBehaviors.Actions;
       
      Last edited: Oct 9, 2012
    7. daorigin

      daorigin New Member

      Joined:
      Feb 12, 2011
      Messages:
      267
      Likes Received:
      1
      Trophy Points:
      0
      Only if you are talent for Impending Victory.

      Code:
                      Spell.Cast("Impending Victory"),
      
      should read like

      Code:
       
                     Spell.Cast("Impending Victory", ret => StyxWoW.Me.HasAura("Victorious")),
      
      otherwise it will keep trying to activate that move n make your rotation sluggish n may make you die in some cases.

      you can also change
      Code:
      		
      Spell.Cast("Execute"),
      
      to
      Code:
      		Spell.Cast("Execute", ret=> StyxWoW.Me.CurrentTarget.HealthPercent <= 20),
      
      so that it actually execute the target at the right time instead trying to spam a unavailable move.

      below is how i modified my own, been grinding 150+ mogus a hr with it.
      Code:
      		Spell.Cast("Execute", ret=> StyxWoW.Me.CurrentTarget.HealthPercent <= 20),
                      Spell.Cast("Impending Victory", ret => StyxWoW.Me.HasAura("Victorious")),
      		Spell.Cast("Colossus Smash", ret => !StyxWoW.Me.CurrentTarget.HasMyAura("Colossus Smash")),
      		Spell.Cast("Dragon Roar"), // Only add this line if you have Dragon Roar talented.
                      Spell.Cast("Mortal Strike"),
                      Spell.Cast("Overpower"),
                      Spell.Cast("Slam"),
      		Spell.Cast("Heroic Strike", ret => StyxWoW.Me.HasAura("Taste for Blood")),
      
      for non advanced users that want to use these edits without doing themselves i attached a arms file. if there is a problem plz pm me directly but its a simple copy and paste n it works im on the latest rev of hb .

      and for victory rush users...

      Code:
                      Spell.Cast("Victory Rush"),
      
      should read like

      Code:
       
                     Spell.Cast("Victory Rush", ret => StyxWoW.Me.HasAura("Victorious")),
      
       

      Attached Files:

      • Arms.cs
        File size:
        5.3 KB
        Views:
        76
      Last edited: Oct 10, 2012
    8. evilme73

      evilme73 New Member

      Joined:
      Jan 6, 2012
      Messages:
      100
      Likes Received:
      4
      Trophy Points:
      0
      That would require you to have impending victory talented too right? For users that don't, change impending victory to "Victory Rush". The buff condition is still appropriate.

      Also, your execute condition should be lessthan, not greater than or equal to.
       
    9. daorigin

      daorigin New Member

      Joined:
      Feb 12, 2011
      Messages:
      267
      Likes Received:
      1
      Trophy Points:
      0
      thank you didnt quite catch that already edited my post to reflect your sighting... im doing tons of edits to make arms smoother, its like they gutted the shit out of the stance dance ver apoc had. with the way i have it setup in my 461 gear its doing just as good as i do manually which is essential to the AFK process.
       
    10. Ervilha

      Ervilha New Member

      Joined:
      Mar 6, 2012
      Messages:
      3
      Likes Received:
      0
      Trophy Points:
      1
      I tried this, but the error in this part (10f) >= 3)
      Seems not accept this parameter >=

      I fix using this.

      ret => Unit.UnfriendlyUnitsNearTarget(10f).Count() >= 2),

      This is my fury rotation today

      Spell.Cast("Execute", ret=> StyxWoW.Me.CurrentTarget.HealthPercent <= 20),
      Spell.Cast("Die by the Sword", ret => Unit.UnfriendlyUnitsNearTarget(10f).Count() >= 3),
      Spell.Cast("Sweeping Strikes", ret => Unit.UnfriendlyUnitsNearTarget(10f).Count() >= 2),
      Spell.Cast("Skull Banner", ret => Unit.UnfriendlyUnitsNearTarget(10f).Count() >= 2),
      Spell.Cast("Avatar", ret => Unit.UnfriendlyUnitsNearTarget(10f).Count() >= 2),
      Spell.Cast("Impending Victory", ret => StyxWoW.Me.HasAura("Victorious")),
      Spell.Cast("Bloodthirst"),
      Spell.Cast("Colossus Smash", ret => !StyxWoW.Me.CurrentTarget.HasMyAura("Colossus Smash")),
      Spell.Cast("Dragon Roar"),
      Spell.Cast("Raging Blow"),
      Spell.Cast("Wild Strike", ret => StyxWoW.Me.HasAura("Bloodsurge")),
      Spell.Cast("Heroic Strike", ret => (StyxWoW.Me.CurrentRage >= RageDump(80)) || (StyxWoW.Me.CurrentRage >= RageDump(60) && StyxWoW.Me.HasAura("Deadly Calm"))),
       
      Last edited: Oct 10, 2012
    11. diablofan

      diablofan Member

      Joined:
      Apr 27, 2012
      Messages:
      446
      Likes Received:
      1
      Trophy Points:
      18
      guys, i cant get the sweeping strike command to work, it always fails at compiling at HB start, I tried your 2 variants
      using Styx.WoWInternals.WoWObjects;
      using CommonBehaviors.Actions;

      Spell.Cast("Sweeping Strikes", ret => Unit.UnfriendlyUnitsNearTarget(10f).Count() >= 2),
      OR
      Spell.Cast("Sweeping Strikes", ret => Unit.UnfriendlyUnitsNearTarget(10f) >= 2),

      location of these commands is OK, any idea ?
       
    12. daorigin

      daorigin New Member

      Joined:
      Feb 12, 2011
      Messages:
      267
      Likes Received:
      1
      Trophy Points:
      0
      First time i tried those commands it worked fine for me then it stopped, what i have noticed in other threads and seems to be very popular is that HB compiler seems to be buggy for instance in the shamwow thread Bobby's CC seems to be having the same issue, his resolution has been to delete everything within CompiledAssemblies folder and restart HB, you may need to do this every time but it should compile fine or may not but it isnt a coding error and not to worry compiled assemblies folder files are new every time you start HB think of it as WoW's cache folder sort of speak.
       
    13. diablofan

      diablofan Member

      Joined:
      Apr 27, 2012
      Messages:
      446
      Likes Received:
      1
      Trophy Points:
      18
      damn folder deleted, tried both versions again errors :/
       
    14. PepzAd

      PepzAd New Member

      Joined:
      Sep 27, 2012
      Messages:
      3
      Likes Received:
      0
      Trophy Points:
      0
      Hey! I downloaded the file "Victory Rush-Fury.cs" and changed it with the orignial "Fury" file in Honorbuddy/Routines/Singular/Classspecific/Warrior but its not working. My character charges the target and just autoattack. Would appreciate if someone could help me out. Thanks :eek:
       
    15. benj180

      benj180 Member

      Joined:
      Jan 15, 2010
      Messages:
      142
      Likes Received:
      1
      Trophy Points:
      18
      Any chance you could attach your fury.cs file? Having issues getting the multi target count working and wanted to check mine against yours.

       
    16. Ervilha

      Ervilha New Member

      Joined:
      Mar 6, 2012
      Messages:
      3
      Likes Received:
      0
      Trophy Points:
      1
      View attachment Fury.cs My version!
       
    17. benj180

      benj180 Member

      Joined:
      Jan 15, 2010
      Messages:
      142
      Likes Received:
      1
      Trophy Points:
      18
    18. benj180

      benj180 Member

      Joined:
      Jan 15, 2010
      Messages:
      142
      Likes Received:
      1
      Trophy Points:
      18
      Appreciate the help dude, have my arms routine running pretty much the way i want it now :)

      Don't suppose you or anyone else knows how to count stacks of Taste for Blood, so i could have it use HS if stacks of the buff were more than 2 or 3?

      Spell.Cast("Heroic Strike", ret => StyxWoW.Me.HasAura("Taste for Blood")),
       
    19. HamadB

      HamadB Member

      Joined:
      Oct 12, 2012
      Messages:
      34
      Likes Received:
      0
      Trophy Points:
      6
      Ii looove yooou.
       
    20. paperc07

      paperc07 Member

      Joined:
      Dec 16, 2011
      Messages:
      829
      Likes Received:
      9
      Trophy Points:
      18
      I downloaded the Arms one from page one and replaced it just like it said to but I noticed he still isnt casting Impending Victory
       
    Thread Status:
    Not open for further replies.

    Share This Page