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

Three Musketeers - fast legendary farm after 2.0.4

@snakkes
this error makes you feel bad, or what? or your bot stop run if it happends?

this is the question from the same pool - i always ignore it

like:

- is this nerfed?
- how to setup difficulty?
- how to use the table?
- etc

:D
 
this error makes you feel bad, or what? or your bot stop run if it happends?

The bot stops and the error message keeps resetting :\

The bot works perfect until this error suddenly for no reason when crafting like game 231 or 176.

Just seems like there is no reason for it either :S

You need any other logs or stuff? :)

Love the bot and it works perfectly for 99 % of the time for me.

Just that error that comes when I run the bot for over 3 hours ++
 
Morchel is my savior, using his suggestions, DH, looks like I went from farming t3 to t5... Might be ballsy and go t6 but not until I run this for a full day to see the deaths lol.
 
fixed an error with the Ghom, Face-toface, without instant leave

redownload attachement pls
 
my bot does fine except when I go into archon it just spins around ghom while casting arcane blast not doing anything else
 
i tell you wat to do

get mf gear, run with mf 24 hours
after this run without mf

and compare the logs
 
my bot does fine except when I go into archon it just spins around ghom while casting arcane blast not doing anything else


After tuning my friends bot last night, this can be fixed inside the wizard trinity combat settings, uncheck use arcane strike.
 
barb build 2 from first post is the best for me
i did some fixes to Trinity/Combat/Abilities/BarbarianCombat.cs

to cast Avalanche and Earthquake only when we have full fury
my full fury is 108
you must change red numbers to your personally fury number

Code:
        public static bool CanUseAvalanche
        {
            get
            {
                return !UseOOCBuff && !IsCurrentlyAvoiding && CombatBase.CanCast(SNOPower.X1_Barbarian_Avalanche_v2, CanCastFlags.NoTimer) &&
                       (TargetUtil.AnyMobsInRange(3) || Player.PrimaryResource >= [COLOR="#FF0000"]107[/COLOR]);
            }
        }

Code:
        public static bool ShouldWaitForEarthquake
        {
            get
            {
                return
                    Hotbar.Contains(SNOPower.Barbarian_Earthquake) &&
                    !UseOOCBuff &&
                    !IsCurrentlyAvoiding &&
                    !CanCast(SNOPower.Barbarian_Earthquake) &&
                    TargetUtil.EliteOrTrashInRange(45) &&
                    Player.PrimaryResource <= [COLOR="#FF0000"]107[/COLOR];
            }
        }
        public static bool CanCastEarthquake
        {
            get
            {
                return
                    !UseOOCBuff &&
                    !IsCurrentlyAvoiding &&
                    !Player.IsIncapacitated &&
                    CanCast(SNOPower.Barbarian_Earthquake) &&
                    TargetUtil.IsEliteTargetInRange(45f) &&
					Player.PrimaryResource >= [COLOR="#FF0000"]107[/COLOR];
            }
        }
 
Last edited:
barb build 2 from first post is the best for me, peronally
i did some fixes to Trinity/Combat/Abilities/BarbarianCombat.cs

to cast Avalanche and Earthquake only when we have full fury
my full fury is 108
you must change red numbers to your personally fury number

Code:
        public static bool CanUseAvalanche
        {
            get
            {
                return !UseOOCBuff && !IsCurrentlyAvoiding && CombatBase.CanCast(SNOPower.X1_Barbarian_Avalanche_v2, CanCastFlags.NoTimer) &&
                       (TargetUtil.AnyMobsInRange(3) || Player.PrimaryResource >= [COLOR="#FF0000"]107[/COLOR]);
            }
        }

Code:
        public static bool ShouldWaitForEarthquake
        {
            get
            {
                return
                    Hotbar.Contains(SNOPower.Barbarian_Earthquake) &&
                    !UseOOCBuff &&
                    !IsCurrentlyAvoiding &&
                    !CanCast(SNOPower.Barbarian_Earthquake) &&
                    TargetUtil.EliteOrTrashInRange(45) &&
                    Player.PrimaryResource <= [COLOR="#FF0000"]107[/COLOR];
            }
        }
        public static bool CanCastEarthquake
        {
            get
            {
                return
                    !UseOOCBuff &&
                    !IsCurrentlyAvoiding &&
                    !Player.IsIncapacitated &&
                    CanCast(SNOPower.Barbarian_Earthquake) &&
                    TargetUtil.IsEliteTargetInRange(45f) &&
					Player.PrimaryResource >= [COLOR="#FF0000"]107[/COLOR];
            }
        }
Awesome, thanks.

Why do you prefer Avalanche over HOTA?
 
Says the link doesnt work :S Please fix this.

Ty for great profile!

EDIT Works now.
 
Just wanted to say my thanks this is one of the best profiles here, for sure best exp/gp per hr (ghom ftw)
 
Back
Top