-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #37 from PunishXIV/autoRot
Auto rot
- Loading branch information
Showing
127 changed files
with
16,916 additions
and
12,763 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
using System; | ||
|
||
namespace XIVSlothCombo.Attributes | ||
{ | ||
[AttributeUsage(AttributeTargets.Field)] | ||
internal class AutoActionAttribute : Attribute | ||
{ | ||
public bool IsAoE; | ||
public bool IsHeal; | ||
internal AutoActionAttribute(bool isAoE, bool isHeal) | ||
{ | ||
IsAoE = isAoE; | ||
IsHeal = isHeal; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
namespace XIVSlothCombo.AutoRotation | ||
{ | ||
public class AutoRotationConfig | ||
{ | ||
public bool Enabled; | ||
public bool InCombatOnly = false; | ||
public bool BypassQuest = false; | ||
public bool BypassFATE = false; | ||
public int CombatDelay = 1; | ||
public DPSRotationMode DPSRotationMode; | ||
public HealerRotationMode HealerRotationMode; | ||
public HealerSettings HealerSettings = new(); | ||
public DPSSettings DPSSettings = new(); | ||
} | ||
|
||
public class DPSSettings | ||
{ | ||
public bool FATEPriority = false; | ||
public bool QuestPriority = false; | ||
public int? DPSAoETargets = 3; | ||
} | ||
|
||
public class HealerSettings | ||
{ | ||
public int SingleTargetHPP = 70; | ||
public int AoETargetHPP = 80; | ||
public int SingleTargetRegenHPP = 60; | ||
public int? AoEHealTargetCount = 2; | ||
public bool ManageKardia = false; | ||
public bool KardiaTanksOnly = false; | ||
public bool AutoRez = false; | ||
public bool AutoCleanse = false; | ||
public bool PreEmptiveHoT = false; | ||
|
||
} | ||
} |
Oops, something went wrong.