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

Trinity 3.x.x ISSUE WITH MULTISHOT FIXED DEMON HUNTER

Forsik

Member
Joined
Jul 10, 2013
Messages
79
Reaction score
0
I fixed that shit
1)Make clean instal of Trinity 3.x.x
2)Dont run DB
3)Go to \Plugins\+Trinity\Bot\Routines\Defaults\DemonHunterCombat.cs
4)change this
private static bool Multishot(Skill skill)
{
// Natalyas - Wait for damage buff
if (Sets.NatalyasVengeance.IsFullyEquipped && CacheManager.Me.PrimaryResource < 100 && !CacheBuffs.HasBuff(SNOPower.P2_ItemPassive_Unique_Ring_053))
return false;

if (Sets.UnhallowedEssence.IsMaxBonusActive || TargetUtil.ClusterExists(45, 3))
return true;

return false;
}
TO THIS
private static bool Multishot(Skill skill)
{
// Natalyas - Wait for damage buff
if (Sets.NatalyasVengeance.IsFullyEquipped && CacheManager.Me.PrimaryResource < 100 && !CacheBuffs.HasBuff(SNOPower.P2_ItemPassive_Unique_Ring_053))
return false;

if (Sets.UnhallowedEssence.IsMaxBonusActive || TargetUtil.ClusterExists(45, 1))
return true;

return false;
}
 
Make sure you renamed the trunt file ( +Trinity ) in your plugins folder. And remove the other trinity file.
 
Back
Top