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

Trinity 1.8.4

Status
Not open for further replies.

rrrix

New Member
Joined
Jul 11, 2010
Messages
3,449
Reaction score
61
Download Trinity 1.8.4

1.8.4


Ignore elites should work much better
Fixed casting magic weapon every 10 seconds with archon in hotbar
Fixed stashing blues when we should have been stashing whites only
Fixed not using shines/wells/pools with DB Beta 347+
Added Force Salvage all Rares option
Trinity will now perform a town run when in town, and has 6 or less free bag slots remaining, or average item durability is less than 50%
Changed default BeesWasps Aoe to 6 radius / 25% health
 
Last edited:
I want to pick up only 61RLvLs both magic and rare

Please state the problem clearly. I have no idea what your issue is, nor how to reproduce it. If you want support, you have to help me, I can't see your screen, read your logs, or read your mind!
 
In addition, when I try to disable gold inactivity it doesnt work. I uncheck it but still trying to reset profile after 30secs
 
Please state the problem clearly. I have no idea what your issue is, nor how to reproduce it. If you want support, you have to help me, I can't see your screen, read your logs, or read your mind!


I want to pickup only and only 61Required Level magic and rare items in order to salvage them; nothing more...

For ex: View attachment 120147
 
1. THe issue with CombatRAdius dont working as it should be, remains: http://www.thebuddyforum.com/demonb...ity/152064-trinity-1-8-3-a-8.html#post1423069
last DB beta
see how far bot start attack with kill radius 5 :confused:

can you check it please? i think you can easy reproduce it. with any hero and build - the same issue


2. will you add this in next release? :) http://www.thebuddyforum.com/demonb...ity/152064-trinity-1-8-3-a-7.html#post1423035

3. the question about QT - http://www.thebuddyforum.com/demonb...ity/152064-trinity-1-8-3-a-4.html#post1422053
 
Last edited:
Could you please add an option for barbarian to cast call of the ancients on any mobs for the new 4 part IK set bonus instead of just elites within range?
 
quick question: does the item rules withing this trinity version works fine for new patch?
 
1. THe issue with CombatRAdius dont working as it should be, remains: http://www.thebuddyforum.com/demonb...ity/152064-trinity-1-8-3-a-8.html#post1423069
last DB beta
see how far bot start attack with kill radius 5 :confused:

can you check it please? i think you can easy reproduce it. with any hero and build - the same issue


2. will you add this in next release? :) http://www.thebuddyforum.com/demonb...ity/152064-trinity-1-8-3-a-7.html#post1423035

3. the question about QT - http://www.thebuddyforum.com/demonb...ity/152064-trinity-1-8-3-a-4.html#post1422053

For #1, can you send me a screenshot of your Combat>Misc tab.

2. Sure.

3:
rrrix i dont know where i must reporting things connecting with the Quest Tool, so let it be here?

can you add the same thing for push "space" or whatawer is this mechanism to cancelling conversation, but not the quest conversation between hero and NPC, but between two NPCs?

like now bot w8ting for ending the dialog between Mira and blacksmith in the cellar... near 15 seconds. Or between Tyrael and Imperius in the beginning of the A4

we can skip it by "space bar" in game, bot cannot do it.

will be useful for your AllActQuesting profile too - save a lot of time in the result

This is not currently supported by demonbuddy unfortunately.
 
Is this version enabled for your ezupdater? Because it seems like I am not getting it.

Thanks,
jotd
 
Is this version enabled for your ezupdater? Because it seems like I am not getting it.

Thanks,
jotd

EZUpdater only checks once in 24 hours. I'll add a button to "force check updates" soon.
 
is it possible to use skill under [1] during being archon? It could work same as [LPM] close range attack only

@edit

I mean the arcane blast under archon ;)

@edit2

This used conditions are not doing its job. Trinity does not use blast even in close range of elites
Code:
  // Arcane Blast
                if (!UseOOCBuff && !Player.IsIncapacitated && CombatBase.CanCast(SNOPower.Wizard_Archon_ArcaneBlast) && 
                    (TargetUtil.AnyElitesInRange(15, 1) || TargetUtil.AnyMobsInRange(15, 1) ||
                     (CurrentTarget.IsBossOrEliteRareUnique && CurrentTarget.RadiusDistance <= 15f)))
                {
                    return new TrinityPower(SNOPower.Wizard_Archon_ArcaneBlast, 0f, Vector3.Zero, CurrentWorldDynamicId, -1, 1, 1, WAIT_FOR_ANIM);
                }
 
Last edited:
For #1, can you send me a screenshot of your Combat>Misc tab.

1. sure, i decrease thrash attack radius there too
3o3ofNJ.jpg


2. one thing about DH. I always change this when download new trinity
Code:
// Rain of Vengeance
            if (!UseOOCBuff && CombatBase.CanCast(SNOPower.DemonHunter_RainOfVengeance) && !Player.IsIncapacitated &&
                (TargetUtil.AnyMobsInRange(25, 3) || TargetUtil.AnyElitesInRange(25)))
            {
                return new TrinityPower(SNOPower.DemonHunter_RainOfVengeance, 0f, Vector3.Zero, CurrentWorldDynamicId, -1, 1, 1, WAIT_FOR_ANIM);
            }

to this

Code:
// Rain of Vengeance
            if (!UseOOCBuff && CombatBase.CanCast(SNOPower.DemonHunter_RainOfVengeance) && !Player.IsIncapacitated &&
                (TargetUtil.AnyElitesInRange(20)))
            {
                return new TrinityPower(SNOPower.DemonHunter_RainOfVengeance, 0f, Vector3.Zero, CurrentWorldDynamicId, -1, 1, 1, WAIT_FOR_ANIM);
            }

can you add an option in trinity to use RoV on elites only?
 
Better:

Code:
            // Rain of Vengeance
            if (!UseOOCBuff && CombatBase.CanCast(SNOPower.DemonHunter_RainOfVengeance) && !Player.IsIncapacitated &&
                ((TargetUtil.AnyMobsInRange(25, 3) && CombatBase.IgnoringElites) || TargetUtil.AnyElitesInRange(25)))
            {
                return new TrinityPower(SNOPower.DemonHunter_RainOfVengeance, 0f, Vector3.Zero, CurrentWorldDynamicId, -1, 1, 1, WAIT_FOR_ANIM);
            }
 
Unchecking gold inactivity doesnt work. Please tell me how can I cancel it.

Also, magic weapon spamming is fixed. however my character refresh energy armor before it expires.
 
Still having some problems with it attacking elites in CoTA. Should i try a fresh DB install?
 
Status
Not open for further replies.
Back
Top