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

Furious Charge [SPAM] request

torinohito

New Member
Joined
Aug 25, 2013
Messages
49
Reaction score
0
RRRIX would it be possible to incorporate this code for a furious charge spam? Credit Mrbubbel, with a small change.

Code:
        public static bool CanUseFuriousCharge
        {
            get
            {
                if (UseOOCBuff)
                    return false;

                var bestTarget = TargetUtil.GetBestPierceTarget(35f);
                int unitsInFrontOfBestTarget = 0;

                if (bestTarget != null)
                    unitsInFrontOfBestTarget = bestTarget.CountUnitsInFront();

                return CanCast(SNOPower.Barbarian_FuriousCharge, CanCastFlags.NoTimer) &&
                    (unitsInFrontOfBestTarget >= 1 || CurrentTarget.HitPoints >= 50000000);

            }
        }
 
i really cant see any difference with mrbubbel between default trinity code. Default trinity also spamming furious charge and doing 37+ grits for it.
 
Back
Top