From 8a0bad0bdc213d7b9c30d30ee3dfcd870a3723b2 Mon Sep 17 00:00:00 2001 From: Rabalaba Date: Sat, 13 Jul 2024 22:30:32 -0700 Subject: [PATCH] pct --- Advanced_Rotations/PVE/Ranged_Magic/PCT.cs | 1 + Advanced_Rotations/PVP/Melee/SAM.cs | 2 +- Advanced_Rotations/RabbsRotationsNET8.csproj | 2 +- Advanced_Rotations/RotationInfo.cs | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Advanced_Rotations/PVE/Ranged_Magic/PCT.cs b/Advanced_Rotations/PVE/Ranged_Magic/PCT.cs index a582a0b..de12421 100644 --- a/Advanced_Rotations/PVE/Ranged_Magic/PCT.cs +++ b/Advanced_Rotations/PVE/Ranged_Magic/PCT.cs @@ -185,6 +185,7 @@ protected override bool GeneralGCD(out IAction? act) { if (ScenicMusePvE.CanUse(out act, skipCastingCheck: true, skipStatusProvideCheck: true, skipComboCheck: true, skipAoeCheck: true, usedUp: true) && LandscapeMotifDrawn) return true; + if (RetributionOfTheMadeenPvE.CanUse(out act, skipCastingCheck: true, skipStatusProvideCheck: true, skipComboCheck: true, skipAoeCheck: true, usedUp: true) && MooglePortraitReady) return true; if (MogOfTheAgesPvE.CanUse(out act, skipCastingCheck: true, skipStatusProvideCheck: true, skipComboCheck: true, skipAoeCheck: true, usedUp: true) && MooglePortraitReady) return true; if (StrikingMusePvE.CanUse(out act, skipCastingCheck: true, skipStatusProvideCheck: true, skipComboCheck: true, skipAoeCheck: true, usedUp: true) && WeaponMotifDrawn) return true; if (PomMusePvE.CanUse(out act, skipCastingCheck: true, skipStatusProvideCheck: true, skipComboCheck: true, skipAoeCheck: true, usedUp: true) && CreatureMotifDrawn && LivingMusePvE.AdjustedID == PomMusePvE.ID) return true; diff --git a/Advanced_Rotations/PVP/Melee/SAM.cs b/Advanced_Rotations/PVP/Melee/SAM.cs index 86e42df..ef15fbd 100644 --- a/Advanced_Rotations/PVP/Melee/SAM.cs +++ b/Advanced_Rotations/PVP/Melee/SAM.cs @@ -110,7 +110,7 @@ protected unsafe override bool GeneralGCD(out IAction? act) if (UIState.Instance()->LimitBreakController.CurrentUnits >= 4000) { if (HissatsuChitenPvP.CanUse(out act)) return true; - if (Zantetsuken.CanUse(out act, skipAoeCheck:true) && (Zantetsuken.Target.Target?.HasStatus(true, StatusID.Kuzushi) ?? false)) return true; + //if (Zantetsuken.CanUse(out act, skipAoeCheck:true) && (Zantetsuken.Target.Target?.HasStatus(true, StatusID.Kuzushi) ?? false)) return true; } // Early exits for Guard status or Sprint usage if (GuardCancel && Player.HasStatus(true, StatusID.Guard)) return false; diff --git a/Advanced_Rotations/RabbsRotationsNET8.csproj b/Advanced_Rotations/RabbsRotationsNET8.csproj index 2362d1c..85fd4ac 100644 --- a/Advanced_Rotations/RabbsRotationsNET8.csproj +++ b/Advanced_Rotations/RabbsRotationsNET8.csproj @@ -4,7 +4,7 @@ net8.0-windows enable Rabbs - 1.1.2.9 + 1.1.3.0 x64 x64 diff --git a/Advanced_Rotations/RotationInfo.cs b/Advanced_Rotations/RotationInfo.cs index aeb78c4..c1ba3b5 100644 --- a/Advanced_Rotations/RotationInfo.cs +++ b/Advanced_Rotations/RotationInfo.cs @@ -4,5 +4,5 @@ internal class RotationInfo { internal const string USERNAME = $"Rabbs"; - internal const string VERSION = "1.1.2.9"; + internal const string VERSION = "1.1.3.0"; }