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

GilesTrinity 1.6.3.2: some fixes/changes

anyone notice either the newest beta DB or trinity gets stuck around barricades and obstacles a lot? bot doesnt seem to break it when theres a unit just on the otherside.
 
I noticed that and db getting stuck trying to open chests/corpses :/
 
getting some kind of stuttering while whirlwinding in wotb, generally after a 3rd zigzag. im not really sure how to explain it, the barb kinda "dances" on the spot briefly before continuing to whirlwind.
while not in wotb whilrwinding is fluid however :|

ill try a few things and post back if i have any success.


edit: the culprit seems to be fury dumping while in wotb.
quoting myself. i added an additional requirement for using sprint/battle rage while fury dumping which fixed the problem for me.
Code:
DateTime.Now.Subtract(dictAbilityLastUse[SNOPower.Barbarian_Sprint]).TotalMilliseconds >= 200
 
Last edited:
quoting myself. i added an additional requirement for using sprint/battle rage while fury dumping which fixed the problem for me.
Code:
DateTime.Now.Subtract(dictAbilityLastUse[SNOPower.Barbarian_Sprint]).TotalMilliseconds >= 200


Hey bro could you tell use the code segment to which we should add the above line? Appreciate it :)
 
Hey bro could you tell use the code segment to which we should add the above line? Appreciate it :)

Search for line 6650. It should look like this:

Code:
// Sprint buff, if same suitable targets as elites, keep maintained for WW users
if (!bOOCBuff && hashPowerHotbarAbilities.Contains(SNOPower.Barbarian_Sprint) && !playerStatus.bIsIncapacitated &&
DateTime.Now.Subtract(dictAbilityLastUse[SNOPower.Barbarian_Sprint]).TotalMilliseconds >= 200 &&
 
i use this version but sometimes my barbs just stay and spam "sprint" how can i fix this?
 
i use this version but sometimes my barbs just stay and spam "sprint" how can i fix this?
this isnt very helpful.. without providing any information nobody can help you fix it. is it spamming sprint during wotb and causing the barb to stop whirlwinding? if so i posted something that fixed that issue for me just a few posts up.

if its not that you have to actually provide info so people can help you -___-
 
this isnt very helpful.. without providing any information nobody can help you fix it. is it spamming sprint during wotb and causing the barb to stop whirlwinding? if so i posted something that fixed that issue for me just a few posts up.

if its not that you have to actually provide info so people can help you -___-

oh thanks :D i will find your post
 
Pure awesomeness, can't wait for you and Giles to collaborate on the Barb version of Trinity !
 
im testing lastest version and works great with WW/op/nobash, thanks a lot! farming mp6 ez..
 
Last edited:
Hey bombastic, great work man
Do you think you could add some piece of code to use bash at the closest enemy while character is jailed?
 
why i can't set with the new version Giles 123.webp

Any solution with that?.. THX
 
Ive made some special changes to wotb usage and want to share with you guys.

Wrath of the Berserker changes:
-- Only used in elites with Arcane Enchanted , Frozen, Jailer and Molten affixes; (I don't want to waste wotb on easy elites, that change made me go from mp4 to mp5 with 0 dph, using ww+op+nobash build)
-- Also used in bosses and uber elites (key wardens), of course;
-- Molten core is not avoided if wotb is activated and 100% hp; (already did that in normal v3 but forgot to mention)

Be aware: these changes are not suitable for everyone! Use it carefully -- if you are a undergeared barb this version is not for you!

Try it and feedback it :p
 

Attachments

Last edited:
Awesome! But you should add Nightmarish to that list as well

edit: wait, does nightmare work while WOTB is active or not?
 
Last edited:
Awesome! But you should add Nightmarish to that list as well

edit: wait, does nightmare work while WOTB is active or not?

WotB is immune to all crowd control effects, including nightmarish.

Too add it, change my code to this:

Code:
//WotB only used on Arcane, Frozen, Jailer and Molten elites
if (theseaffixes.HasFlag(MonsterAffixes.ArcaneEnchanted) || theseaffixes.HasFlag(MonsterAffixes.Frozen) ||
theseaffixes.HasFlag(MonsterAffixes.Jailer) || theseaffixes.HasFlag(MonsterAffixes.Molten) ||
[b][size=4]theseaffixes.HasFlag(MonsterAffixes.Nightmarish)[/size][/b] ||

(I find it pretty harmless btw :p)
 
Last edited:
Thanks! I realize it's harmless when compared to the other ones, but I find it pretty goddamn annoying nevertheless
 
Back
Top