rrrix
New Member
- Joined
- Jul 11, 2010
- Messages
- 3,449
- Reaction score
- 61
Go here: https://www.thebuddyforum.com/demon...ty-2-6-2-questtools-3-3-12-a.html#post1918938
It's on EZ Updater now, too.
It's on EZ Updater now, too.
if (CanCast(SNOPower.DemonHunter_ClusterArrow) && TimeSincePowerUse(SNOPower.X1_DemonHunter_EvasiveFire) <= 5000)
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).
// 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);
}
}
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.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!
try this a line 114:
Use this post > trinity requestsAlso, 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.
impossible, using for a lot logic and work fine, i will try to debug this laterNope, 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.
like SkrotorianIs 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![]()
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!
Or does anyone know a version of Buddy me that will work with 2.5.2 since that is the current stable Trinity version?