What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal
RebornBuddy Forums

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

E大求助啊

Trinity\Combat\Abilities\CrusaderCombat.cs
Code:
                if (CanCast(SNOPower.X1_Crusader_LawsOfValor2) && (TargetUtil.EliteOrTrashInRange(16f) || TargetUtil.AnyMobsInRange(15f, 5)))
                {
                    return new TrinityPower(SNOPower.X1_Crusader_LawsOfValor2);
                }
改成
Code:
                if (CanCast(SNOPower.X1_Crusader_LawsOfValor2) && (TargetUtil.AnyMobsInRange(15f, 1)))
                {
                    return new TrinityPower(SNOPower.X1_Crusader_LawsOfValor2);
                }
 
Back
Top