you should edit Plugins\Trinity\Combat\Abilities\DemonHunter.cs
like follow:
// Cluster Arrow
if (!UseOOCBuff && !IsCurrentlyAvoiding && CombatBase.CanCast(SNOPower.DemonHunter_ClusterArrow) && !Player.IsIncapacitated &&
Player.PrimaryResource >= 150)
{
return new TrinityPower(SNOPower.DemonHunter_ClusterArrow, V.F("DemonHunter.ClusterArrow.UseRange"), CurrentTarget.ACDGuid);
}
Player.PrimaryResource >= 150,then dh will no use Cluster Arrow,or set to the number you want
this is the reason people are dumb as fuck and should never try to code unless someone with half a brain corrects them first....
// Cluster Arrow
bool disableClusterArrowSpender = true;
if (!UseOOCBuff && !IsCurrentlyAvoiding && CombatBase.CanCast(SNOPower.DemonHunter_ClusterArrow) && !Player.IsIncapacitated && Player.PrimaryResource >= 75)
{
if(!disableClusterArrowSpender)
return new TrinityPower(SNOPower.DemonHunter_ClusterArrow, V.F("DemonHunter.ClusterArrow.UseRange"), CurrentTarget.ACDGuid);
}
where it says bool disableClusterArrowSpender = true... if u want the bot to cast CA... set it to false.
i always leave 1 spender [ele arrow] on activate == true because of destructables/getting stuck/vaulting spam into a corner and no way out retarded bot behaviour thats unavoidable till they release a working trinity avoidance system since it broke.....
just remember one thing -- auto attacks with base arrows and having HATRED is probably an easier target for u to get banned if i was half smart, id actually have a script running as blizzard to check for said previous statement and start dishing out bans... but who knows how stupid blizzard employees really are.
also once the patch has been done and we can play again, ill probably be setting up a thread for everyone whos been bitching pissing moaning and sooking over ppl not releasing their demonhunter.cs with all the testing and hours spent adjusting things cuz their either A) lazy B) lazier C) laziest... but need to finish testing a few modifications to wolf buff behaviour and CA/MS/EA usage/disabling.. so keep your eyes peeled over next 2 days.
MUST MANUALLY EDIT ONE PART OF IT BECAUSE FOR SOME REASON COPY/PASTE ON FORUM BREAKS THE CODE:
WHERE IT SAYS ClusterArrow and u see a space in between the r and o, delete it! ive just found an issue with pasting in forums
3rd Line --- before Player.IsIncapacitated double check when u copy/paste that there is no spaces in any of the code that isnt meant to be there between wording.