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

[A1 Inferno]FallenDev's, Bossqwerty-spiced FoM zorked edition -> MP10 E-skipping

in gui ups to 4000-4100... amazing... thanks a lot, let's test now.
does bot kill mobs faster?


cast Sprint only from mainhand ( in offhand we can use EoF 700dps 1.45 +0.25 +100cd :D)
i didn't test it
ww-ww-ww-Rend-Sprint-ww-ww-ww-Rend-Sprint
BarbarianCombat.cs
Code:
public static bool CanUseSprint
        {
            get
            {
                return !UseOOCBuff && CanCast(SNOPower.Barbarian_Sprint, CanCastFlags.NoTimer) && !Player.IsIncapacitated &&
                    (LastPowerUsed == SNOPower.Barbarian_Rend && 
                    (!Hotbar.Contains(SNOPower.Barbarian_BattleRage) || (Hotbar.Contains(SNOPower.Barbarian_BattleRage) && GetHasBuff(SNOPower.Barbarian_BattleRage))) &&
                    // Check for minimum energy
                    Player.PrimaryResource >= V.F("Barbarian.Sprint.MinFury"));
            }
        }
 
yep!

is quest tool plugin needed? (it is in your archive)
for lvl 2 crypt

ping 900ms, can't test new Sprint tweak
if someone want to test, just copy and replace this file to plugins\trinity\combat\abilities
upd. i'm in game now
upd2, need to add some options to control fury (so far so good, insane dps;))
 

Attachments

If you have the time and desire, please check settings fps 20 and 15 and let me know how big is the impact. BIG Thank you.
 
testing
Code:
if (cacheObject.RadiusDistance > 15f && (cacheObject.ItemQuality < ItemQuality.Legendary))
{
cacheObject.Weight = 0;
break;
}
we don't want backtrack for rares, potions and gold><
 
hehe some fast tweeks, need to test for some time to see it works ;), but good work
 
2x1h
1250dps 1.3as rare+ 850dps EoF
d3rawr.com
fully buffed
dps 540k
tDPS: 2320000
EHP 750k
3%LS
24%MS
∅ Number of Tornadoes: 3.5
Damage with MH ticks*: 4728834
 
Latest trinity version with 2 last tweaks
ps i need to find better TrinityExploreDungeon crypt lvl1 parameters
<TrinityExploreDungeon questId="136656" stepId="1" boxSize="30" boxTolerance="0.10" pathPrecision="17"
timeoutType="GoldInactivity" timeoutValue="60" townPortalOnTimeout="True"
endType="ExitFound" exitNameHash="1070710596" objectDistance="150">
 

Attachments

why i die so much?:O
enough hp/Ehp...enough dps

===== Misc Statistics =====
Total tracking time: 0h 22m 44s
Total deaths: 12 [31,67 per hour]
Total games (approx): 11 [29,03 per hour]
Total XP gained: 0 million [0 million per hour]
Total Gold gained: 95,64 Thousand [252,39 Thousand per hour]
 
why i die so much?:O
enough hp/Ehp...enough dps

===== Misc Statistics =====
Total tracking time: 0h 22m 44s
Total deaths: 12 [31,67 per hour]
Total games (approx): 11 [29,03 per hour]
Total XP gained: 0 million [0 million per hour]
Total Gold gained: 95,64 Thousand [252,39 Thousand per hour]
i can't answer without seeing it, when do you die?
 
bot stucks in field for example....or stand in mobs and do nothing..<.<

and i haven't permanent sprint..<.<

bot attacks mobs in poison tree aoe dmg...
 
yep, with using only main hand dps he dont cast sprint ooc whan stand on offhand
 
bot stucks in field for example....or stand in mobs and do nothing..<.<

and i haven't permanent sprint..<.<

bot attacks mobs in poison tree aoe dmg...
1,2 i don't know
3 check path aroud aoe

in 1.5.2WW3 not good prevent sprint spam realization ( bot will not use sprint vs 1 mob, becouse he can't reach 60 fury)
this is better
Code:
public static bool CanUseSprint
        {
            get
            {
                return !UseOOCBuff && CanCast(SNOPower.Barbarian_Sprint, CanCastFlags.NoTimer) && !Player.IsIncapacitated &&
                    (LastPowerUsed == SNOPower.Barbarian_Rend && 
                    (!Hotbar.Contains(SNOPower.Barbarian_BattleRage) || (Hotbar.Contains(SNOPower.Barbarian_BattleRage) && GetHasBuff(SNOPower.Barbarian_BattleRage))) &&
                    // Check for minimum energy
                   [B] (Player.PrimaryResource >= 60 || !GetHasBuff(SNOPower.Barbarian_Sprint)[/B]));
            }
        }
 
Back
Top