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

[suggestion] quin monk attack petern

finalnova

New Member
Joined
Feb 7, 2015
Messages
15
Reaction score
0
in recent before complete ShouldSpreadStaticCharge() method

monk only use Monk_FistsofThunder

but 2 times Monk_WayOfTheHundredFists + 1 times Monk_FistsofThunder

is faster when you fight normal monsters(not boss)

so how about this code?

in MonkCombat.cs line 30

Code:
static int _staticCount = 1;

in MonkCombat.cs line 363

Code:
                if (ShouldSpreadStaticCharge())
                {
                    var target = GetNewStaticChargeTarget() ?? CurrentTarget;
                    if (target != null && !target.IsBoss)
                    {
						if(_staticCount > 2)
						{
							_staticCount = 1;
							return new TrinityPower(SNOPower.Monk_FistsofThunder, 20f, target.ACDGuid);
						}
						else			
	                        return new TrinityPower(SNOPower.Monk_WayOfTheHundredFists, 20f, target.ACDGuid);
                    }                  
                }

				_staticCount++;

                return new TrinityPower(SNOPower.Monk_WayOfTheHundredFists, 20f, CurrentTarget.ACDGuid);
            }
 
Last edited:
Back
Top