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

Demon Hunter Legendary Chakram Quiver

alainbuddy

New Member
Joined
Jun 14, 2014
Messages
166
Reaction score
3
How do I make Chakram act like a hatred generator? I edited DemonHunter.cs to make Chakram used when >=0 hatred but the bot doesnt spam it... it just uses it very situationally. I want the bot to spam the shit out of it and not just do it once in a while.

The quiver I am referring to is Spines of Seething Hatred which instead makes it generate 4 hatred.

Thanks!
 
How do I make Chakram act like a hatred generator? I edited DemonHunter.cs to make Chakram used when >=0 hatred but the bot doesnt spam it... it just uses it very situationally. I want the bot to spam the shit out of it and not just do it once in a while.

The quiver I am referring to is Spines of Seething Hatred which instead makes it generate 4 hatred.

Thanks!

Can you link your full build? Do you use this with other hated generators or this is your only one?
 
@ rrrix

Some people use "Spine of Seething Hatred" instead of the "Bombadier's Rucksack". They use it with "Helltrapper" to generate more Sentries. It pretty much replaces Multishot in the Normal M6 build.

It also has the added benefit of passing through walls.
 
Hope I did this right:

Demon Hunter - Game Guide - Diablo III

Using M6 with Tasker n Theo and the quiver I mentioned. The reason why I like to use Twin Chakrams is because my sentries will use it as well and it allows me to get a few shots in of Cluster Arrow.

Also on a different setup, I am having problems with no hatred generators using:

Demon Hunter - Game Guide - Diablo III

I had to make modifications to only use Elemental Arrow at >= 70, Cluster Arrow >= 100 and disable Multi Shot using /* and */ before and after it (if i set the hatred to >=150 to make it never be used I would sometimes run into a problem where no attacks were being used). The bot will work most of the time, but then sometimes will just decide to facetank everything until it dies (doesnt even use a potion). This odd behavior is what prevents me from doing T6 safely and I have to use Awareness and Beckon Sail (with gearswap reloaded) to save myself.
 
Also forgot to mention, the quiver is the same idea as Kridershot where it generates hatred on Elemental Arrow instead... Spines of Seething Hatred is just a quiver that makes Chakram go from costing 10 hatred to generating 4 hatred. Would love to have Kridershot instead since I could keep using Elemental Arrow but Chakrams go through walls, which is freaking neat!

Thanks and let me know what else you need... I'll do whatever it takes to get this working right!
 
I did similar thread some days ago but anyone answered.
My solution has been:
1) create a constant
Code:
boolean hasQuiver = true;
2) then add the string
Code:
|| hasQuiver
in the end of chakram section
3) comment multishot

My build is Demon Hunter - Game Guide - Diablo III

Currently farming GR32
 
if (!UseOOCBuff && !IsCurrentlyAvoiding && Hotbar.Contains(SNOPower.DemonHunter_Chakram) && !Player.IsIncapacitated &&
!Runes.DemonHunter.ShurikenCloud.IsActive &&
((Player.PrimaryResource >= 10 && !Player.WaitingForReserveEnergy) || Player.PrimaryResource >= 10))

was the code I just used to get it working, not the most clean fix but did the trick :)
 
Finally got around to trying it and Sepponen... that works like a charm. Thanks!
 
Back
Top