What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

Barb Earthquake

keganaraujo

New Member
Joined
Apr 30, 2014
Messages
29
Reaction score
0
hey all,

My barb isnt using earthquakes some times, specifically in the hell rift on the cursed chested if it spawns the 4 mallet lords. how do i change it so the bot uses it more? i am running a lighting build and am using the lightning rune with the ability
 
hey all,

My barb isnt using earthquakes some times, specifically in the hell rift on the cursed chested if it spawns the 4 mallet lords. how do i change it so the bot uses it more? i am running a lighting build and am using the lightning rune with the ability

It should be used any time an elite target is in range (~ 18 yards).

Do you want it used off cooldown, or on packs of trash/non-elites?
 
rrrix, would you be able to assist me in modifying the file in order to use earthquake more? please ;)
 
I would start by changing the timer in the variables for earthquake ? 50000ms would be 50 secs. And go from there.
 
Ok, that didn't work out.

Either way, I think there needs more to be done in order to optimize it for the leap build.
Like when there are few mobs, it should still use the leap..instead of it being OOC.
 
Last edited:
Thank you! I actually got earthquake working the same way, but the others are great. :D
 
thanks for that. sometimes it works (WOTB before COTA). Sometimes it doesn't.

actually, been monitoring some more. more likely than not, it COTAs first, then WOTB. i would say 70-30. Maybe needs more of a delay counter?
Last edited by effang; Today at 00:07.
 
this changes leap earthquake and call of the ancients.
also added the settings file to enable avoidance in wotb.
works with 1.9.7 just replace the same files.

View attachment 130012
View attachment 130013

Thanks for this, but only one thing. After Ghom is dead he continues to use leap and then teleports after the second jump. Anyway to stop him from using leap when Ghom is dead and just tp out?
Thanks again
 
so everyone else has WOTB activate then COTA? what am i doing differently?

thanks
 
so everyone else has WOTB activate then COTA? what am i doing differently?

thanks
both skills probably have different range settings. but what you can do is open barbariancombat and look for
Code:
        public static bool CanCastCallOfTheAncients
        {
            get
            {
                return
                    !UseOOCBuff &&
                    !IsCurrentlyAvoiding &&
                    CanCast(SNOPower.Barbarian_CallOfTheAncients) &&
                    !Player.IsIncapacitated &&
	            !GetHasBuff(SNOPower.Barbarian_CallOfTheAncients) &&
                    (TargetUtil.EliteOrTrashInRange(V.F("Barbarian.CallOfTheAncients.MinEliteRange")) ||
                    TargetUtil.AnyMobsInRange(V.F("Barbarian.CallOfTheAncients.MinEliteRange"), 3) || TargetUtil.AnyElitesInRange(V.F("Barbarian.CallOfTheAncients.MinEliteRange")));
            }
        }

and change it with

Code:
        public static bool CanCastCallOfTheAncients
        {
            get
            {
                return
                    !UseOOCBuff &&
                    !IsCurrentlyAvoiding &&
                    CanCast(SNOPower.Barbarian_CallOfTheAncients) &&
                    !Player.IsIncapacitated &&
	            !GetHasBuff(SNOPower.Barbarian_CallOfTheAncients) &&
                    GetHasBuff(SNOPower.Barbarian_WrathOfTheBerserker) &&
                    (TargetUtil.EliteOrTrashInRange(V.F("Barbarian.CallOfTheAncients.MinEliteRange")) ||
                    TargetUtil.AnyMobsInRange(V.F("Barbarian.CallOfTheAncients.MinEliteRange"), 3) || TargetUtil.AnyElitesInRange(V.F("Barbarian.CallOfTheAncients.MinEliteRange")));
            }
        }

didnt test it. but it should never cast without wotb now.
 
Back
Top