I'd very much like that. Also Trag'oul Coils support would be nice
Trag'oul is already supported

I'd very much like that. Also Trag'oul Coils support would be nice
Is the Furnace also supported? I have everything running on default settings, have a Furnace in my players inventory with the bot set to protect that slot.
It has not been swapping it out. It definitely will give me better clear times.
I think the easiest implementation will be when the passive Heavenly Strength is being used as it wont cause you to drop an offhand item.
Did I miss that too, much like I missed the BK ring?
// Spirit Walk < 65% Health: Healing Journey
if (CanCast(SNOPower.Witchdoctor_SpiritWalk) && hasHealingJourney &&
Player.CurrentHealthPct <= V.F("WitchDoctor.SpiritWalk.HealingJourneyHealth"))
{
return new TrinityPower(SNOPower.Witchdoctor_SpiritWalk);
}
When I change to 1.0.3.6. My WD can't cast Spirit Walk.
I didn't change any setting. And didn't use Shukranis.
Just normal cast when HP < 65%.
WitchDoctorCombat.cs
if (!powerManager)
return false;
// GearSwap Handling
if (TrinityHelper.IsInSkillList(power.ToString()))
{
if (!TrinityHelper.HasGear(power.ToString()))
return false;
}
return true;
}
Yeah same here in regards to spirit walk, so I'm using 1.0.3.5 for now.
okey, if I only use one amulet it switches over but if i try to add two amulets, only the last amulet added will work.
Like, I setup gearswap so that my Countess Julian's Cameo should be equipped if there is arcane present and it it works like a charm. But when I also try to add Zephirhan Amulet for lighting....only the Zephirhan Amulet is getting swapped even if there is arcane in the area.
Why is that? Is there some special thing I need to do if I wanna have more then 1 amulet swapped?
Thanks for your answer.
Well, Im not talking about when an Elite is using both arcane and lightning but I want my Cameo to be equipped when an elite is using Arcane and Xephirian when a enemy is using lightning. (and if I get an elite that uses both arcane and lighting, I want Cameo to be equipped over the Xephirian as it is the priority list)
Right now, its only my Xephiriao which is getting equipped when there is lightning but my Cameo will not get equipped when there is arcane. As I said, my Cameo worked before I added the Xephirian.
Also, if i remove Xephirian from my managed list....my cameo is still dead and will not be equipped before I do a "reset list" action and do everything all over again.
Good work on the Reload! I sorta went MIA after I had my first child. Haven't really had time to play D3 anymore. I learned a lot about c# doing the original GearSwap plugin, glad you are cleaning up my work a bit!
Alright, step by step :
- Clear your managed gear list
- Add Cameo (Arcane)
- Add Xephirian (Lightning)
- Equip your default gear and press "Add current Gear as default"
See if it happen again, and btw, consider checking "Lighning" and "Arcane" in the conditions.
/EDIT/
I'm fixing shrines atm, seems to be working, w8&see
Thanks, I will try that.
But, I should check only "Lightning" for Xephirian and "Arcane" for Cameo right?
Sure, you check only what you want.![]()
Yeah, but there is only one right way to do it? like, if you press Arcane for Xephirian, then Xephirian will be equipped when there is arcane in the area right? I just wondered if i should check both lighting and arcane for both amulets.