Skip to content

Commit

Permalink
Merge pull request #24 from FFXIV-CombatReborn/better-defaults
Browse files Browse the repository at this point in the history
update defaults to safer config
  • Loading branch information
LTS-FFXIV authored Mar 30, 2024
2 parents 77f671e + 174b5cb commit 394f09f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions RotationSolver.Basic/Configuration/Configs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ public const string
[UI("The max ping that RS can get to before skipping to the next action.",
Filter = BasicTimer)]
[Range(0.01f, 0.5f, ConfigUnitType.Seconds, 0.002f)]
public float MaxPing { get; set; } = 0.06f;
public float MaxPing { get; set; } = 0.5f;

[UI("Use additional conditions", Filter = BasicParams)]
public bool UseAdditionalConditions { get; set; } = false;
Expand Down Expand Up @@ -452,7 +452,7 @@ public const string
[UI("The time ahead of the last oGCD before the next GCD being avaliable to start trying using it (may affect skill weaving)",
Filter = BasicTimer)]
[Range(0, 0.4f, ConfigUnitType.Seconds, 0.002f)]
public float MinLastAbilityAdvanced { get; set; } = 0.1f;
public float MinLastAbilityAdvanced { get; set; } = 0.06f;

[UI("When their minimum HP is lower than this.", Parent = nameof(HealWhenNothingTodo))]
[Range(0, 1, ConfigUnitType.Percent, 0.002f)]
Expand Down Expand Up @@ -488,7 +488,7 @@ public const string
[UI("The time before an oGCD is avaliable to start trying using it",
Filter = BasicTimer)]
[Range(0, 0.5f, ConfigUnitType.Seconds, 0.002f)]
public float ActionAheadForLast0GCD { get; set; } = 0.06f;
public float ActionAheadForLast0GCD { get; set; } = 0.01f;

[UI("The range of random delay for finding a target.", Filter =TargetConfig)]
[Range(0, 3, ConfigUnitType.Seconds)]
Expand Down Expand Up @@ -612,7 +612,7 @@ public const string
[UI("The minimum time between updating RS information.",
Filter = BasicTimer)]
[Range(0, 1, ConfigUnitType.Seconds, 0.002f)]
public float MinUpdatingTime { get; set; } = 0.02f;
public float MinUpdatingTime { get; set; } = 0.00f;

[UI("The HP for using Guard.",
Filter = AutoActionCondition, Section = 3,
Expand Down

0 comments on commit 394f09f

Please sign in to comment.