Skip to content
This repository has been archived by the owner on Nov 21, 2024. It is now read-only.

Commit

Permalink
Merge commit 'refs/pull/1798/head' of https://github.com/Nik-Potokar/…
Browse files Browse the repository at this point in the history
  • Loading branch information
Taurenkey committed Sep 14, 2024
2 parents 600f3c4 + 9acd845 commit b2151fe
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions XIVSlothCombo/Combos/PvE/VPR.cs
Original file line number Diff line number Diff line change
Expand Up @@ -202,14 +202,14 @@ protected override uint Invoke(uint actionID, uint lastComboMove, float comboTim
return UncoiledFury;

//Vicewinder Usage
if (HasEffect(Buffs.Swiftscaled) &&
if (HasEffect(Buffs.Swiftscaled) && !VPRCheckTimers.IsComboExpiring(3) &&
ActionReady(Vicewinder) && !HasEffect(Buffs.Reawakened) && InMeleeRange() &&
((ireCD >= GCD * 5) || !LevelChecked(SerpentsIre)) &&
!VPRCheckTimers.IsVenomExpiring(3) && !VPRCheckTimers.IsHoningExpiring(3))
return Vicewinder;

// Uncoiled Fury usage
if (LevelChecked(UncoiledFury) && HasEffect(Buffs.Swiftscaled) && HasEffect(Buffs.HuntersInstinct) &&
if (LevelChecked(UncoiledFury) && HasEffect(Buffs.Swiftscaled) && HasEffect(Buffs.HuntersInstinct) && !VPRCheckTimers.IsComboExpiring(2) &&
RattlingCoils > 1 &&
!VicewinderReady && !HuntersCoilReady && !SwiftskinsCoilReady &&
!HasEffect(Buffs.Reawakened) && !HasEffect(Buffs.ReadyToReawaken) && !WasLastWeaponskill(Ouroboros) &&
Expand Down Expand Up @@ -419,7 +419,7 @@ protected override uint Invoke(uint actionID, uint lastComboMove, float comboTim

//Vicewinder Combo
if (IsEnabled(CustomComboPreset.VPR_ST_CDs) &&
IsEnabled(CustomComboPreset.VPR_ST_VicewinderCombo) &&
IsEnabled(CustomComboPreset.VPR_ST_VicewinderCombo) &&
!HasEffect(Buffs.Reawakened) && LevelChecked(Vicewinder) && InMeleeRange())
{
// Swiftskin's Coil
Expand All @@ -443,20 +443,20 @@ protected override uint Invoke(uint actionID, uint lastComboMove, float comboTim

//Vicewinder Usage
if (IsEnabled(CustomComboPreset.VPR_ST_CDs) &&
IsEnabled(CustomComboPreset.VPR_ST_Vicewinder) && HasEffect(Buffs.Swiftscaled) &&
IsEnabled(CustomComboPreset.VPR_ST_Vicewinder) && HasEffect(Buffs.Swiftscaled) && !VPRCheckTimers.IsComboExpiring(3) &&
ActionReady(Vicewinder) && !HasEffect(Buffs.Reawakened) && InMeleeRange() &&
((ireCD >= GCD * 5) || !LevelChecked(SerpentsIre)) &&
!VPRCheckTimers.IsVenomExpiring(3) && !VPRCheckTimers.IsHoningExpiring(3))
return Vicewinder;

// Uncoiled Fury usage
if (IsEnabled(CustomComboPreset.VPR_ST_UncoiledFury) &&
if (IsEnabled(CustomComboPreset.VPR_ST_UncoiledFury) && !VPRCheckTimers.IsComboExpiring(2) &&
LevelChecked(UncoiledFury) && HasEffect(Buffs.Swiftscaled) && HasEffect(Buffs.HuntersInstinct) &&
((RattlingCoils > Config.VPR_ST_UncoiledFury_HoldCharges) ||
(enemyHP < uncoiledThreshold && VPRCheckRattlingCoils.HasRattlingCoilStack(gauge))) &&
!VicewinderReady && !HuntersCoilReady && !SwiftskinsCoilReady &&
!HasEffect(Buffs.Reawakened) && !HasEffect(Buffs.ReadyToReawaken) && !WasLastWeaponskill(Ouroboros) &&
!VPRCheckTimers.IsEmpowermentExpiring(6) && !VPRCheckTimers.IsVenomExpiring(3) && !VPRCheckTimers.IsHoningExpiring(3))
!VPRCheckTimers.IsEmpowermentExpiring(3))
return UncoiledFury;

//Reawaken combo
Expand Down

0 comments on commit b2151fe

Please sign in to comment.