spitfireqt
New Member
- Joined
- Jan 1, 2013
- Messages
- 132
- Reaction score
- 0
I wish it would use it when 3 or more mobs are in range. It's just not spamming it enough, it's a great skill to pick now that rrrix made the party plugin to work. Anyone can help me with the code?
Is the code right?
Code:
// Threatening shout
if (!bOOCBuff && hashPowerHotbarAbilities.Contains(SNOPower.Barbarian_ThreateningShout) && !playerStatus.bIsIncapacitated &&
(
(targetCurrent.bThisBoss && targetCurrent.fRadiusDistance <= 20) || (iAnythingWithinRange[RANGE_20] > 3) || ((iAnythingWithinRange[RANGE_20] + iElitesWithinRange[RANGE_20]) > 3)
) &&
GilesUseTimer(SNOPower.Barbarian_ThreateningShout, true) && PowerManager.CanCast(SNOPower.Barbarian_ThreateningShout))
{
return new GilesPower(SNOPower.Barbarian_ThreateningShout, 0f, vNullLocation, iCurrentWorldID, -1, 1, 1, USE_SLOWLY);
}
Is the code right?






