Hi guys,
Im doing ghom runs atm and the moment he enters the room he casts big bad voodoo, which leaves the fetishes just 1-2 radius's outside of it.
I changed it to:
still not working though =/
Im doing ghom runs atm and the moment he enters the room he casts big bad voodoo, which leaves the fetishes just 1-2 radius's outside of it.
I changed it to:
Code:
// Big Bad Voodoo, elites and bosses only
if (!UseOOCBuff && CombatBase.CanCast(SNOPower.Witchdoctor_BigBadVoodoo) && !Player.IsIncapacitated &&
!CurrentTarget.IsTreasureGoblin &&
(CombatBase.IgnoringElites && (TargetUtil.AnyElitesInRange(4, 1) || (CurrentTarget.IsBossOrEliteRareUnique && CurrentTarget.RadiusDistance <= 5f)) || !CombatBase.IgnoringElites))
{
return new TrinityPower(SNOPower.Witchdoctor_BigBadVoodoo, 0f, Vector3.Zero, CurrentWorldDynamicId, -1, 0, 0, WAIT_FOR_ANIM);
}