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

[Plugin] Trinity Fork (Kite/Avoidance)

Hi, I'm using DB latest trinity with the improved Roland's Setup for 2.2. I have both Golden Flense equipped for Sweep Attack and a Piro Marella for Shield Bash. Currently, the bot is only using Shield Bash. Is there a way to get it to use both, or alternate between Sweeping Attack for larger mobs, and burst down elites with Shield Bash? It would make the build much more bottable/efficient. Thank you!
 
Can you guys look into the new Bastion's Will set? (Focus and Restraint)

They give two buffs, and one of them only gets activated when you use a primary skill. So, you have to use a primary each 5 seconds to get both buffs.

I tried to force Cluster Arrow to be used only if there are more than 5 seconds since Evasive Fire last use:

Code:
if (CanCast(SNOPower.DemonHunter_ClusterArrow) && TimeSincePowerUse(SNOPower.X1_DemonHunter_EvasiveFire) <= 5000)

But it doesn't work, bot keep spaming CA with 0 uses of evasive fire (unless there's no hatred of course).
 
Can you guys look into the new Bastion's Will set? (Focus and Restraint)

They give two buffs, and one of them only gets activated when you use a primary skill. So, you have to use a primary each 5 seconds to get both buffs.

I tried to force Cluster Arrow to be used only if there are more than 5 seconds since Evasive Fire last use:

Code:
if (CanCast(SNOPower.DemonHunter_ClusterArrow) && TimeSincePowerUse(SNOPower.X1_DemonHunter_EvasiveFire) <= 5000)

But it doesn't work, bot keep spaming CA with 0 uses of evasive fire (unless there's no hatred of course).

try this a line 114:
Code:
// In combat, Not Avoiding
            if (CurrentTarget != null)
            {
                TrinityPower power = GetCombatBuffPower();
                if (!IsNull(power)) { return power; }

                if (CurrentTarget.IsUnit)
                {
                    if (BastionsOfWillRequirePrimary)
                    {
                        power = GetPrimaryPower();
                        if (!IsNull(power)) { return power; }
                    }

                    power = GetCombatPower();
                    if (!IsNull(power)) { return power; }

                    power = GetPrimaryPower();
                    if (!IsNull(power)) { return power; }
                }
            }

            // Default attacks
            return DefaultPower;
        }

        private static bool BastionsOfWillRequirePrimary
        {
            get
            {
                return Sets.BastionsOfWill.IsMaxBonusActive &&
                    (TimeSincePowerUse(SNOPower.X1_DemonHunter_EvasiveFire) >= 5000 ||
                    TimeSincePowerUse(SNOPower.DemonHunter_HungeringArrow) >= 5000 ||
                    TimeSincePowerUse(SNOPower.X1_DemonHunter_EntanglingShot) >= 5000 ||
                    TimeSincePowerUse(SNOPower.DemonHunter_Bolas) >= 5000 ||
                    TimeSincePowerUse(SNOPower.DemonHunter_Grenades) >= 5000);
            }
        }
 
Hi, I'm using DB latest trinity with the improved Roland's Setup for 2.2. I have both Golden Flense equipped for Sweep Attack and a Piro Marella for Shield Bash. Currently, the bot is only using Shield Bash. Is there a way to get it to use both, or alternate between Sweeping Attack for larger mobs, and burst down elites with Shield Bash? It would make the build much more bottable/efficient. Thank you!
Also, the new Belt of the Trove with an ancient Mortal Drama works wonders for speed farming. There could be a tick-box to use Bombardment off cooldown (similar to Akarats and Laws) to maximize this bonus.
 
Is there anyway to make this plugin to work properly on Dashing Monk (new ability of Thousand Storms set)?
I mean to use Ephihany Off CD and to attack mobs or RG or Key Wardens with Dashing Strike.
Now, toon blinks with Dash to the mob, not to pass it through and deal no DMG to the "boss". It is very effective build to farm fast on T6 keys, bounties, etc.

Or maybe it will be easier for me to use Crusader to farm T6 :P
 
Last edited:
Also, the new Belt of the Trove with an ancient Mortal Drama works wonders for speed farming. There could be a tick-box to use Bombardment off cooldown (similar to Akarats and Laws) to maximize this bonus.
Use this post > trinity requests
Nope, doesn't work. Keep spamming CA and only use primary skill when out of hatred.

I'm telling you, that TimeSincePowerUse function is not working.
impossible, using for a lot logic and work fine, i will try to debug this later
Is there anyway to make this plugin to work properly on Dashing Monk (new ability of Thousand Storms set)?
I mean to use Ephihany Off CD and to attack mobs or RG or Key Wardens with Dashing Strike.
Now, toon blinks with Dash to the mob, not to pass it through and deal no DMG to the "boss". It is very effective build to farm fast on T6 keys, bounties, etc.

Or maybe it will be easier for me to use Crusader to farm T6 :P
like Skrotorian :) trinity requests
 
hey guys i think i'm doing something wrong my bot just keeps walking until it finds elite using WD it will run greater rift kamikaze style just running past mobs and elite any help is greatly appriciated thanks

EDIT: second run WD went a lot better WD stopped when confronted with trash mobs ,sometimes powered through it still hugs the mobs sometimes but still better then first run :) clearing 42 easy
 
Last edited:
down your trash pack size to 1 and radius to 15/25
edit: top :)
 
as soon as the rift is over i will test it out, thnx a lot

EDIT: down your trash pack size to 1 and radius to 15/25 didn't work WD is still hugging trash mobs but sometimes retreats 25 yards.
but i don't care working great so far Grift 43 (6 piece zuni jeram build)
 
Last edited:
Buddy Me - I have been following your Plugin and using it since Ver 1. Thanks again for all of your efforts.

I've updated to 2.2 and watching my DH continuely vault into dense trash mobs and elites Kamikaze style. I have modified radius to 25 and this still doesn't work.

Any advice please?

Thanks.

Update. Vaults directly into the Elites - not sideways or back and all sentries are dropped immediately on top of the boss.
 
Last edited:
Am I installing this wrong? I replace the trinity folder in my demonbuddy folder for this one but it doesn't show up in the bot.
 
I play a pet WD. How can I set up pet WD to avoid death? This WD always acts like melee hero and rush into mobs and elites and always die!
 
Hi, I'm using DB latest trinity with the improved Roland's Setup for 2.2. I have both Golden Flense equipped for Sweep Attack and a Piro Marella for Shield Bash. Currently, the bot is only using Shield Bash. Is there a way to get it to use both, or alternate between Sweeping Attack for larger mobs, and burst down elites with Shield Bash? It would make the build much more bottable/efficient. Thank you!

ok i figured this one out, my shield bash was ONLY being spammed too, could not generate fury. you just need to open the CrusaderCombat.cs file in Plugins->Trinity->Combat->Abilities.

Then go to the line that has shield bash, where it writes >=20, change the 20 to a 40. Fixed the problem for me ,now it does not spam shield bash when im low on resource. i might get the message "does not have enough resource" very rarely now


edit: sorry didn't really read your problem correctly, idont know if this fixes using sweeping and shield. my problem was that shield bash was only getting spammed
 
Last edited:
Any chance to push an update for 2.5.2 so we can get updated wonderful BuddMe routines working again =)
 
Or does anyone know a version of Buddy me that will work with 2.5.2 since that is the current stable Trinity version?
 
Back
Top