├── .github ├── FUNDING.yml └── workflows │ └── publish.yml ├── .gitignore ├── .gitmodules ├── COPYING ├── COPYING.LESSER ├── Directory.Build.props ├── Images ├── 0001.png ├── 0002.png ├── 0003.png ├── 0004.png ├── 0005.png ├── 0006.png ├── 0007.png ├── 0008.png ├── 0009.png ├── 0010.png ├── 0011.png ├── 0012.png ├── 0013.png ├── 0014.png ├── 0015.png ├── 0016.png ├── 0017.png ├── 0018.png ├── 0019.png ├── 0020.png ├── 0021.png ├── 0022.png ├── 0023.png ├── 0024.png ├── 0025.png ├── 0026.png ├── 0027.png ├── 0028.png ├── 0029.png ├── 0030.png ├── 0031.png ├── 0032.png ├── 0033.png ├── 0034.png ├── 0035.png ├── 0036.png ├── 0037.png ├── 0038.png ├── 0039.png ├── 0040.png ├── 0041.png ├── 0042.png ├── 0043.png ├── 0044.png ├── 0045.png ├── 0046.png ├── 0047.png ├── 0048.png ├── 0049.png ├── 0050.png ├── 0051.png ├── 0052.png ├── 0053.png ├── 0054.png ├── 0055.png ├── 0056.png ├── 0057.png ├── 0058.png ├── 0059.png ├── 0060.png ├── 0061.png ├── 0062.png ├── 0063.png ├── 0064.png ├── 0065.png ├── 0066.png ├── 0067.png ├── 0068.png ├── 0069.png ├── 0070.png ├── 0071.png ├── 0072.png ├── 0073.png ├── 0074.png ├── 0075.png ├── 0076.png ├── 0077.png ├── 0078.png ├── 0079.png ├── 0080.png ├── 0081.png ├── 0082.png ├── 0083.png ├── 0084.png ├── 0085.png ├── 0086.png ├── 0087.png ├── 0088.png ├── 0089.png ├── 0090.png ├── 0091.png ├── 0092.png ├── 0093.png ├── 0094.png ├── 0095.png ├── 0096.png ├── 0097.png ├── 0098.png ├── 0099.png ├── 0100.png ├── 0101.png ├── 0102.png ├── 0103.png ├── 0104.png ├── 0105.png ├── 0106.png ├── 0107.png ├── 0108.png ├── 0109.png ├── 0110.png ├── 0111.png ├── 0112.png ├── 0113.png ├── 0114.png ├── 0115.png ├── 0116.png ├── 0117.png ├── 0118.png ├── 0119.png ├── 0120.png ├── 0121.png ├── 0122.png ├── 0123.png ├── 0124.png ├── 0125.png ├── 0126.png ├── 0127.png ├── 0128.png ├── 0129.png ├── 0130.png ├── 0131.png ├── 0132.png ├── 0133.png ├── 0134.png ├── 0135.png ├── 0136.png ├── 0137.png ├── 0138.png ├── 0139.png ├── 0140.png ├── 0141.png ├── 0142.png ├── 0143.png ├── 0144.png ├── 0145.png ├── 0146.png ├── 0147.png ├── 0148.png ├── 0149.png ├── 0150.png ├── 0151.png ├── 0152.png ├── 0153.png ├── 0154.png ├── 0155.png ├── 0156.png ├── 0157.png ├── 0158.png ├── 0159.png ├── 0160.png ├── 0161.png ├── 0162.png ├── 0163.png ├── 0164.png ├── 0165.png ├── 0166.png ├── 0167.png ├── 0168.png ├── 0169.png ├── 0170.png ├── 0171.png ├── 0172.png ├── 0173.png ├── 0174.png ├── 0175.png ├── 0176.png ├── 0177.png ├── 0178.png ├── 0179.png ├── 0180.png ├── Logo.gif ├── Logo.png └── LogoDiscord.png ├── README.md ├── RS Talk.md ├── Resources ├── ActionAOECounts.json ├── ActionHealRatio.json ├── ActionTTK.json ├── AnimationLockTime.json ├── BeneficialPositions.json ├── ContributorsHash.json ├── DangerousStatus.json ├── HostileCastingArea.json ├── HostileCastingTank.json ├── IncompatiblePlugins.json ├── InvincibleStatus.json ├── NoHostileNames.json ├── NoProvokeNames.json ├── PriorityStatus.json ├── RotationSolverIcon.ai ├── RotationSolverRecord.json ├── Supporters.json ├── UsersHash.json └── downloadList.json ├── RotationSolver.Basic ├── Actions │ ├── Actions.cd │ ├── BaseAction_ActionInfo.cs │ ├── BaseAction_BasicInfo.cs │ ├── BaseAction_Cooldown.cs │ ├── BaseAction_Target.cs │ ├── BaseItem.cs │ ├── HealPotionItem.cs │ ├── IAction.cs │ ├── IBaseAction.cs │ ├── IBaseItem.cs │ └── MedicineItem.cs ├── AssemblyInfo.cs ├── Attributes │ ├── AssemblyLinkAttribute.cs │ ├── AuthorHashAttribute.cs │ ├── BetaRotationAttribute.cs │ ├── LinkDescriptionAttribute.cs │ ├── RotationDescAttribute.cs │ ├── SourceCodeAttribute.cs │ └── YoutubeLinkAttribute.cs ├── Configuration │ ├── ActionEventInfo.cs │ ├── Conditions │ │ ├── ActionCondition.cs │ │ ├── ConditionSet.cs │ │ ├── DelayCondition.cs │ │ ├── ICondition.cs │ │ ├── IConditionConverter.cs │ │ ├── MajorConditionSet.cs │ │ ├── NamedCondition.cs │ │ ├── RotationCondition.cs │ │ ├── TargetCondition.cs │ │ ├── TerritoryCondition.cs │ │ └── TraitCondition.cs │ ├── Configs.cs │ ├── MacroInfo.cs │ ├── OtherConfiguration.cs │ ├── RotationConfig │ │ ├── IRotationConfig.cs │ │ ├── IRotationConfigSet.cs │ │ ├── RotationConfig.cd │ │ ├── RotationConfigBase.cs │ │ ├── RotationConfigBoolean.cs │ │ ├── RotationConfigCombo.cs │ │ ├── RotationConfigComparer.cs │ │ ├── RotationConfigFloat.cs │ │ ├── RotationConfigInt.cs │ │ ├── RotationConfigSet.cs │ │ └── RotationConfigString.cs │ └── RotationSolverRecord.cs ├── Data │ ├── ActionCate.cs │ ├── ActionID.cs │ ├── ActionOption.cs │ ├── ActionRec.cs │ ├── Aspect.cs │ ├── AttackType.cs │ ├── AutoStatus.cs │ ├── CanUseOption.cs │ ├── CombatType.cs │ ├── Countdown.cs │ ├── DescType.cs │ ├── EnemyPositional.cs │ ├── IconSet.cs │ ├── JobRole.cs │ ├── KeyButton.cs │ ├── MacroItem.cs │ ├── MapEffectData.cs │ ├── NextAct.cs │ ├── ObjectEffectData.cs │ ├── ObjectListDelay.cs │ ├── RSCommandType.cs │ ├── RandomDelay.cs │ ├── StatusID.cs │ ├── TargetHostileType.cs │ ├── TargetType.cs │ ├── TerritoryContentType.cs │ └── VfxNewData.cs ├── DataCenter.cs ├── Helpers │ ├── ActionHelper.cs │ ├── ConfigurationHelper.cs │ ├── IActionHelper.cs │ ├── MarkingHelper.cs │ ├── ObjectHelper.cs │ ├── ReflectionHelper.cs │ ├── StatusHelper.cs │ └── TargetFilter.cs ├── IEnoughLevel.cs ├── ITexture.cs ├── README.md ├── RotationSolver.Basic.csproj ├── Rotations │ ├── Basic │ │ ├── AST_Base.cs │ │ ├── BLM_Base.cs │ │ ├── BLU_Base.cs │ │ ├── BRD_Base.cs │ │ ├── DNC_Base.cs │ │ ├── DRG_Base.cs │ │ ├── DRK_Base.cs │ │ ├── GNB_Base.cs │ │ ├── MCH_Base.cs │ │ ├── MNK_Base.cs │ │ ├── NIN_Base.cs │ │ ├── PLD_Base.cs │ │ ├── RDM_Base.cs │ │ ├── RPR_Base.cs │ │ ├── SAM_Base.cs │ │ ├── SCH_Base.cs │ │ ├── SGE_Base.cs │ │ ├── SMN_Base.cs │ │ ├── WAR_Base.cs │ │ └── WHM_Base.cs │ ├── CustomRotation_Ability.cs │ ├── CustomRotation_Actions.cs │ ├── CustomRotation_BasicInfo.cs │ ├── CustomRotation_GCD.cs │ ├── CustomRotation_Invoke.cs │ ├── CustomRotation_Medicine.cs │ ├── CustomRotation_OtherInfo.cs │ ├── ICustomRotation.cs │ └── Rotations.cd ├── Service.cs └── Traits │ ├── BaseTrait.cs │ └── IBaseTrait.cs ├── RotationSolver.Templates ├── Full Rotation.zip ├── Rotation Template.zip ├── RotationSolver.ItemTemplates │ ├── Full_Template.cs │ ├── RotationSolver.ItemTemplates.csproj │ └── Simple_Template.cs ├── RotationSolver.ProjectTemplate │ ├── AssemblyInfo.cs │ └── RotationSolver.ProjectTemplate.csproj ├── RotationSolver.Templates.sln ├── RotationSolver.VSIX │ ├── ItemTemplates │ │ ├── Full Rotation.zip │ │ └── Simple Rotation.zip │ ├── ProjectTemplates │ │ └── Rotation Template.zip │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RotationSolver.VSIX.csproj │ ├── RotationSolver.VSIX.csproj.user │ ├── RotationSolverIcon_128.png │ └── source.extension.vsixmanifest └── Simple Rotation.zip ├── RotationSolver.sln ├── RotationSolver ├── Commands │ ├── RSCommands_Actions.cs │ ├── RSCommands_BasicInfo.cs │ ├── RSCommands_OtherCommand.cs │ └── RSCommands_StateSpecialCommand.cs ├── Data │ ├── AssemblyInfo.cs │ ├── CustomRotationGroup.cs │ ├── DownloadOption.cs │ └── LoadedAssembly.cs ├── Helpers │ ├── DownloadHelper.cs │ ├── RotationHelper.cs │ ├── RotationLoadContext.cs │ ├── SpeechHelper.cs │ └── WarningHelper.cs ├── Localization │ ├── ConfigTranslation.cs │ ├── EnumTranslations.cs │ ├── Localization.json │ ├── LocalizationManager.cs │ ├── Strings.cs │ ├── de.json │ ├── es.json │ ├── fr.json │ ├── ja.json │ └── zh.json ├── RotationSolver.csproj ├── RotationSolver.yaml ├── RotationSolverPlugin.cs ├── TextureItems │ └── StatusTexture.cs ├── UI │ ├── CollapsingHeaderGroup.cs │ ├── ConditionDrawer.cs │ ├── ControlWindow.cs │ ├── CooldownWindow.cs │ ├── CtrlWindow.cs │ ├── ImGuiHelper.cs │ ├── ImguiTooltips.cs │ ├── NextActionWindow.cs │ ├── PainterManager.cs │ ├── RotationConfigWindow.cs │ ├── RotationConfigWindowTab.cs │ ├── RotationConfigWindow_Config.cs │ └── SearchableConfigs │ │ ├── AutoHealCheckBox.cs │ │ ├── CheckBoxSearch.cs │ │ ├── ColorEditSearch.cs │ │ ├── DragFloatRangeSearch.cs │ │ ├── DragFloatSearch.cs │ │ ├── DragIntRangeSearch.cs │ │ ├── DragIntSearch.cs │ │ ├── ISearchable.cs │ │ └── Searchable.cs ├── Updaters │ ├── ActionSequencerUpdater.cs │ ├── ActionUpdater.cs │ ├── MacroUpdater.cs │ ├── MajorUpdater.cs │ ├── MovingUpdater.cs │ ├── PreviewUpdater.cs │ ├── RotationUpdater.cs │ ├── SocialUpdater.cs │ └── TargetUpdater.cs └── Watcher.cs ├── RotationsLink.md ├── crowdin.yml ├── docs ├── .nojekyll ├── ChineseServer │ ├── README.md │ ├── _sidebar.md │ ├── assets │ │ └── image.png │ ├── authors.md │ └── users.md ├── Development │ ├── README.md │ └── _sidebar.md ├── Icon.ico ├── README.md ├── _404.md ├── _coverpage.md ├── _navbar.md ├── _sidebar.md ├── action.md ├── assets │ ├── 1680587392644.png │ ├── 1680587583305.png │ ├── 1680587915851.png │ ├── 1680588115090.png │ ├── 1680588432784.png │ ├── 1680588677659.png │ ├── 1680589498456.png │ ├── 1680590431366.png │ ├── 1680590541585.png │ ├── 1680965887006.png │ ├── image-20230122152037534.png │ ├── image-20230122152134510.png │ ├── image-20230122160756082.png │ ├── image-20230122161647566.png │ ├── image-20230122161822896.png │ ├── image-20230123142747722.png │ ├── image-20230123142852650.png │ ├── image-20230123144205172.png │ ├── image-20230227112019649.png │ ├── image-20230404141821517.png │ ├── image-20230404141847740.png │ └── image-20230408222335027.png ├── can-use.md ├── character.md ├── configurations.md ├── customization.md ├── data-maintenance.md ├── index.html ├── rotation-info.md ├── rotation.md └── set-up.md └── manifest.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | ko_fi: ArchiTed -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vs/ 2 | bin/ 3 | obj/ 4 | lib/ -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/.gitmodules -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING.LESSER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/COPYING.LESSER -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Images/0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0001.png -------------------------------------------------------------------------------- /Images/0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0002.png -------------------------------------------------------------------------------- /Images/0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0003.png -------------------------------------------------------------------------------- /Images/0004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0004.png -------------------------------------------------------------------------------- /Images/0005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0005.png -------------------------------------------------------------------------------- /Images/0006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0006.png -------------------------------------------------------------------------------- /Images/0007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0007.png -------------------------------------------------------------------------------- /Images/0008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0008.png -------------------------------------------------------------------------------- /Images/0009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0009.png -------------------------------------------------------------------------------- /Images/0010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0010.png -------------------------------------------------------------------------------- /Images/0011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0011.png -------------------------------------------------------------------------------- /Images/0012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0012.png -------------------------------------------------------------------------------- /Images/0013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0013.png -------------------------------------------------------------------------------- /Images/0014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0014.png -------------------------------------------------------------------------------- /Images/0015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0015.png -------------------------------------------------------------------------------- /Images/0016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0016.png -------------------------------------------------------------------------------- /Images/0017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0017.png -------------------------------------------------------------------------------- /Images/0018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0018.png -------------------------------------------------------------------------------- /Images/0019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0019.png -------------------------------------------------------------------------------- /Images/0020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0020.png -------------------------------------------------------------------------------- /Images/0021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0021.png -------------------------------------------------------------------------------- /Images/0022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0022.png -------------------------------------------------------------------------------- /Images/0023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0023.png -------------------------------------------------------------------------------- /Images/0024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0024.png -------------------------------------------------------------------------------- /Images/0025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0025.png -------------------------------------------------------------------------------- /Images/0026.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0026.png -------------------------------------------------------------------------------- /Images/0027.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0027.png -------------------------------------------------------------------------------- /Images/0028.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0028.png -------------------------------------------------------------------------------- /Images/0029.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0029.png -------------------------------------------------------------------------------- /Images/0030.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0030.png -------------------------------------------------------------------------------- /Images/0031.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0031.png -------------------------------------------------------------------------------- /Images/0032.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0032.png -------------------------------------------------------------------------------- /Images/0033.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0033.png -------------------------------------------------------------------------------- /Images/0034.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0034.png -------------------------------------------------------------------------------- /Images/0035.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0035.png -------------------------------------------------------------------------------- /Images/0036.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0036.png -------------------------------------------------------------------------------- /Images/0037.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0037.png -------------------------------------------------------------------------------- /Images/0038.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0038.png -------------------------------------------------------------------------------- /Images/0039.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0039.png -------------------------------------------------------------------------------- /Images/0040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0040.png -------------------------------------------------------------------------------- /Images/0041.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0041.png -------------------------------------------------------------------------------- /Images/0042.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0042.png -------------------------------------------------------------------------------- /Images/0043.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0043.png -------------------------------------------------------------------------------- /Images/0044.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0044.png -------------------------------------------------------------------------------- /Images/0045.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0045.png -------------------------------------------------------------------------------- /Images/0046.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0046.png -------------------------------------------------------------------------------- /Images/0047.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0047.png -------------------------------------------------------------------------------- /Images/0048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0048.png -------------------------------------------------------------------------------- /Images/0049.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0049.png -------------------------------------------------------------------------------- /Images/0050.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0050.png -------------------------------------------------------------------------------- /Images/0051.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0051.png -------------------------------------------------------------------------------- /Images/0052.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0052.png -------------------------------------------------------------------------------- /Images/0053.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0053.png -------------------------------------------------------------------------------- /Images/0054.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0054.png -------------------------------------------------------------------------------- /Images/0055.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0055.png -------------------------------------------------------------------------------- /Images/0056.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0056.png -------------------------------------------------------------------------------- /Images/0057.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0057.png -------------------------------------------------------------------------------- /Images/0058.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0058.png -------------------------------------------------------------------------------- /Images/0059.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0059.png -------------------------------------------------------------------------------- /Images/0060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0060.png -------------------------------------------------------------------------------- /Images/0061.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0061.png -------------------------------------------------------------------------------- /Images/0062.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0062.png -------------------------------------------------------------------------------- /Images/0063.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0063.png -------------------------------------------------------------------------------- /Images/0064.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0064.png -------------------------------------------------------------------------------- /Images/0065.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0065.png -------------------------------------------------------------------------------- /Images/0066.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0066.png -------------------------------------------------------------------------------- /Images/0067.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0067.png -------------------------------------------------------------------------------- /Images/0068.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0068.png -------------------------------------------------------------------------------- /Images/0069.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0069.png -------------------------------------------------------------------------------- /Images/0070.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0070.png -------------------------------------------------------------------------------- /Images/0071.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0071.png -------------------------------------------------------------------------------- /Images/0072.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0072.png -------------------------------------------------------------------------------- /Images/0073.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0073.png -------------------------------------------------------------------------------- /Images/0074.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0074.png -------------------------------------------------------------------------------- /Images/0075.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0075.png -------------------------------------------------------------------------------- /Images/0076.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0076.png -------------------------------------------------------------------------------- /Images/0077.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0077.png -------------------------------------------------------------------------------- /Images/0078.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0078.png -------------------------------------------------------------------------------- /Images/0079.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0079.png -------------------------------------------------------------------------------- /Images/0080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0080.png -------------------------------------------------------------------------------- /Images/0081.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0081.png -------------------------------------------------------------------------------- /Images/0082.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0082.png -------------------------------------------------------------------------------- /Images/0083.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0083.png -------------------------------------------------------------------------------- /Images/0084.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0084.png -------------------------------------------------------------------------------- /Images/0085.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0085.png -------------------------------------------------------------------------------- /Images/0086.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0086.png -------------------------------------------------------------------------------- /Images/0087.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0087.png -------------------------------------------------------------------------------- /Images/0088.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0088.png -------------------------------------------------------------------------------- /Images/0089.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0089.png -------------------------------------------------------------------------------- /Images/0090.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0090.png -------------------------------------------------------------------------------- /Images/0091.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0091.png -------------------------------------------------------------------------------- /Images/0092.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0092.png -------------------------------------------------------------------------------- /Images/0093.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0093.png -------------------------------------------------------------------------------- /Images/0094.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0094.png -------------------------------------------------------------------------------- /Images/0095.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0095.png -------------------------------------------------------------------------------- /Images/0096.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0096.png -------------------------------------------------------------------------------- /Images/0097.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0097.png -------------------------------------------------------------------------------- /Images/0098.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0098.png -------------------------------------------------------------------------------- /Images/0099.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0099.png -------------------------------------------------------------------------------- /Images/0100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0100.png -------------------------------------------------------------------------------- /Images/0101.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0101.png -------------------------------------------------------------------------------- /Images/0102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0102.png -------------------------------------------------------------------------------- /Images/0103.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0103.png -------------------------------------------------------------------------------- /Images/0104.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0104.png -------------------------------------------------------------------------------- /Images/0105.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0105.png -------------------------------------------------------------------------------- /Images/0106.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0106.png -------------------------------------------------------------------------------- /Images/0107.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0107.png -------------------------------------------------------------------------------- /Images/0108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0108.png -------------------------------------------------------------------------------- /Images/0109.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0109.png -------------------------------------------------------------------------------- /Images/0110.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0110.png -------------------------------------------------------------------------------- /Images/0111.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0111.png -------------------------------------------------------------------------------- /Images/0112.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0112.png -------------------------------------------------------------------------------- /Images/0113.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0113.png -------------------------------------------------------------------------------- /Images/0114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0114.png -------------------------------------------------------------------------------- /Images/0115.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0115.png -------------------------------------------------------------------------------- /Images/0116.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0116.png -------------------------------------------------------------------------------- /Images/0117.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0117.png -------------------------------------------------------------------------------- /Images/0118.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0118.png -------------------------------------------------------------------------------- /Images/0119.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0119.png -------------------------------------------------------------------------------- /Images/0120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0120.png -------------------------------------------------------------------------------- /Images/0121.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0121.png -------------------------------------------------------------------------------- /Images/0122.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0122.png -------------------------------------------------------------------------------- /Images/0123.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0123.png -------------------------------------------------------------------------------- /Images/0124.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0124.png -------------------------------------------------------------------------------- /Images/0125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0125.png -------------------------------------------------------------------------------- /Images/0126.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0126.png -------------------------------------------------------------------------------- /Images/0127.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0127.png -------------------------------------------------------------------------------- /Images/0128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0128.png -------------------------------------------------------------------------------- /Images/0129.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0129.png -------------------------------------------------------------------------------- /Images/0130.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0130.png -------------------------------------------------------------------------------- /Images/0131.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0131.png -------------------------------------------------------------------------------- /Images/0132.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0132.png -------------------------------------------------------------------------------- /Images/0133.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0133.png -------------------------------------------------------------------------------- /Images/0134.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0134.png -------------------------------------------------------------------------------- /Images/0135.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0135.png -------------------------------------------------------------------------------- /Images/0136.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0136.png -------------------------------------------------------------------------------- /Images/0137.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0137.png -------------------------------------------------------------------------------- /Images/0138.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0138.png -------------------------------------------------------------------------------- /Images/0139.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0139.png -------------------------------------------------------------------------------- /Images/0140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0140.png -------------------------------------------------------------------------------- /Images/0141.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0141.png -------------------------------------------------------------------------------- /Images/0142.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0142.png -------------------------------------------------------------------------------- /Images/0143.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0143.png -------------------------------------------------------------------------------- /Images/0144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0144.png -------------------------------------------------------------------------------- /Images/0145.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0145.png -------------------------------------------------------------------------------- /Images/0146.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0146.png -------------------------------------------------------------------------------- /Images/0147.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0147.png -------------------------------------------------------------------------------- /Images/0148.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0148.png -------------------------------------------------------------------------------- /Images/0149.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0149.png -------------------------------------------------------------------------------- /Images/0150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0150.png -------------------------------------------------------------------------------- /Images/0151.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0151.png -------------------------------------------------------------------------------- /Images/0152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0152.png -------------------------------------------------------------------------------- /Images/0153.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0153.png -------------------------------------------------------------------------------- /Images/0154.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0154.png -------------------------------------------------------------------------------- /Images/0155.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0155.png -------------------------------------------------------------------------------- /Images/0156.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0156.png -------------------------------------------------------------------------------- /Images/0157.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0157.png -------------------------------------------------------------------------------- /Images/0158.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0158.png -------------------------------------------------------------------------------- /Images/0159.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0159.png -------------------------------------------------------------------------------- /Images/0160.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0160.png -------------------------------------------------------------------------------- /Images/0161.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0161.png -------------------------------------------------------------------------------- /Images/0162.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0162.png -------------------------------------------------------------------------------- /Images/0163.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0163.png -------------------------------------------------------------------------------- /Images/0164.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0164.png -------------------------------------------------------------------------------- /Images/0165.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0165.png -------------------------------------------------------------------------------- /Images/0166.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0166.png -------------------------------------------------------------------------------- /Images/0167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0167.png -------------------------------------------------------------------------------- /Images/0168.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0168.png -------------------------------------------------------------------------------- /Images/0169.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0169.png -------------------------------------------------------------------------------- /Images/0170.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0170.png -------------------------------------------------------------------------------- /Images/0171.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0171.png -------------------------------------------------------------------------------- /Images/0172.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0172.png -------------------------------------------------------------------------------- /Images/0173.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0173.png -------------------------------------------------------------------------------- /Images/0174.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0174.png -------------------------------------------------------------------------------- /Images/0175.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0175.png -------------------------------------------------------------------------------- /Images/0176.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0176.png -------------------------------------------------------------------------------- /Images/0177.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0177.png -------------------------------------------------------------------------------- /Images/0178.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0178.png -------------------------------------------------------------------------------- /Images/0179.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0179.png -------------------------------------------------------------------------------- /Images/0180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/0180.png -------------------------------------------------------------------------------- /Images/Logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/Logo.gif -------------------------------------------------------------------------------- /Images/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/Logo.png -------------------------------------------------------------------------------- /Images/LogoDiscord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Images/LogoDiscord.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/README.md -------------------------------------------------------------------------------- /RS Talk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RS Talk.md -------------------------------------------------------------------------------- /Resources/ActionAOECounts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Resources/ActionAOECounts.json -------------------------------------------------------------------------------- /Resources/ActionHealRatio.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /Resources/ActionTTK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Resources/ActionTTK.json -------------------------------------------------------------------------------- /Resources/AnimationLockTime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Resources/AnimationLockTime.json -------------------------------------------------------------------------------- /Resources/BeneficialPositions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Resources/BeneficialPositions.json -------------------------------------------------------------------------------- /Resources/ContributorsHash.json: -------------------------------------------------------------------------------- 1 | [ 2 | "kkCy7C/6qMb8yhX+VQByCA==" 3 | ] -------------------------------------------------------------------------------- /Resources/DangerousStatus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Resources/DangerousStatus.json -------------------------------------------------------------------------------- /Resources/HostileCastingArea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Resources/HostileCastingArea.json -------------------------------------------------------------------------------- /Resources/HostileCastingTank.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /Resources/IncompatiblePlugins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Resources/IncompatiblePlugins.json -------------------------------------------------------------------------------- /Resources/InvincibleStatus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Resources/InvincibleStatus.json -------------------------------------------------------------------------------- /Resources/NoHostileNames.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Resources/NoHostileNames.json -------------------------------------------------------------------------------- /Resources/NoProvokeNames.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Resources/NoProvokeNames.json -------------------------------------------------------------------------------- /Resources/PriorityStatus.json: -------------------------------------------------------------------------------- 1 | [ 2 | 944, 3 | 1290 4 | ] 5 | -------------------------------------------------------------------------------- /Resources/RotationSolverIcon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Resources/RotationSolverIcon.ai -------------------------------------------------------------------------------- /Resources/RotationSolverRecord.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Resources/RotationSolverRecord.json -------------------------------------------------------------------------------- /Resources/Supporters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Resources/Supporters.json -------------------------------------------------------------------------------- /Resources/UsersHash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Resources/UsersHash.json -------------------------------------------------------------------------------- /Resources/downloadList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/Resources/downloadList.json -------------------------------------------------------------------------------- /RotationSolver.Basic/Actions/Actions.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Actions/Actions.cd -------------------------------------------------------------------------------- /RotationSolver.Basic/Actions/BaseAction_ActionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Actions/BaseAction_ActionInfo.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Actions/BaseAction_BasicInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Actions/BaseAction_BasicInfo.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Actions/BaseAction_Cooldown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Actions/BaseAction_Cooldown.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Actions/BaseAction_Target.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Actions/BaseAction_Target.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Actions/BaseItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Actions/BaseItem.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Actions/HealPotionItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Actions/HealPotionItem.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Actions/IAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Actions/IAction.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Actions/IBaseAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Actions/IBaseAction.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Actions/IBaseItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Actions/IBaseItem.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Actions/MedicineItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Actions/MedicineItem.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Runtime.CompilerServices; 2 | 3 | [assembly: InternalsVisibleTo("RotationSolver")] -------------------------------------------------------------------------------- /RotationSolver.Basic/Attributes/AssemblyLinkAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Attributes/AssemblyLinkAttribute.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Attributes/AuthorHashAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Attributes/AuthorHashAttribute.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Attributes/BetaRotationAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Attributes/BetaRotationAttribute.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Attributes/LinkDescriptionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Attributes/LinkDescriptionAttribute.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Attributes/RotationDescAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Attributes/RotationDescAttribute.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Attributes/SourceCodeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Attributes/SourceCodeAttribute.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Attributes/YoutubeLinkAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Attributes/YoutubeLinkAttribute.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Configuration/ActionEventInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Configuration/ActionEventInfo.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Configuration/Conditions/ActionCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Configuration/Conditions/ActionCondition.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Configuration/Conditions/ConditionSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Configuration/Conditions/ConditionSet.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Configuration/Conditions/DelayCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Configuration/Conditions/DelayCondition.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Configuration/Conditions/ICondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Configuration/Conditions/ICondition.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Configuration/Conditions/IConditionConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Configuration/Conditions/IConditionConverter.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Configuration/Conditions/MajorConditionSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Configuration/Conditions/MajorConditionSet.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Configuration/Conditions/NamedCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Configuration/Conditions/NamedCondition.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Configuration/Conditions/RotationCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Configuration/Conditions/RotationCondition.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Configuration/Conditions/TargetCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Configuration/Conditions/TargetCondition.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Configuration/Conditions/TerritoryCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Configuration/Conditions/TerritoryCondition.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Configuration/Conditions/TraitCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Configuration/Conditions/TraitCondition.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Configuration/Configs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Configuration/Configs.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Configuration/MacroInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Configuration/MacroInfo.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Configuration/OtherConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Configuration/OtherConfiguration.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Configuration/RotationConfig/IRotationConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Configuration/RotationConfig/IRotationConfig.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Configuration/RotationConfig/IRotationConfigSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Configuration/RotationConfig/IRotationConfigSet.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Configuration/RotationConfig/RotationConfig.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Configuration/RotationConfig/RotationConfig.cd -------------------------------------------------------------------------------- /RotationSolver.Basic/Configuration/RotationConfig/RotationConfigBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Configuration/RotationConfig/RotationConfigBase.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Configuration/RotationConfig/RotationConfigBoolean.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Configuration/RotationConfig/RotationConfigBoolean.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Configuration/RotationConfig/RotationConfigCombo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Configuration/RotationConfig/RotationConfigCombo.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Configuration/RotationConfig/RotationConfigComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Configuration/RotationConfig/RotationConfigComparer.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Configuration/RotationConfig/RotationConfigFloat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Configuration/RotationConfig/RotationConfigFloat.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Configuration/RotationConfig/RotationConfigInt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Configuration/RotationConfig/RotationConfigInt.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Configuration/RotationConfig/RotationConfigSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Configuration/RotationConfig/RotationConfigSet.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Configuration/RotationConfig/RotationConfigString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Configuration/RotationConfig/RotationConfigString.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Configuration/RotationSolverRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Configuration/RotationSolverRecord.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Data/ActionCate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Data/ActionCate.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Data/ActionID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Data/ActionID.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Data/ActionOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Data/ActionOption.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Data/ActionRec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Data/ActionRec.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Data/Aspect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Data/Aspect.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Data/AttackType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Data/AttackType.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Data/AutoStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Data/AutoStatus.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Data/CanUseOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Data/CanUseOption.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Data/CombatType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Data/CombatType.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Data/Countdown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Data/Countdown.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Data/DescType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Data/DescType.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Data/EnemyPositional.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Data/EnemyPositional.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Data/IconSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Data/IconSet.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Data/JobRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Data/JobRole.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Data/KeyButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Data/KeyButton.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Data/MacroItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Data/MacroItem.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Data/MapEffectData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Data/MapEffectData.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Data/NextAct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Data/NextAct.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Data/ObjectEffectData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Data/ObjectEffectData.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Data/ObjectListDelay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Data/ObjectListDelay.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Data/RSCommandType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Data/RSCommandType.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Data/RandomDelay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Data/RandomDelay.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Data/StatusID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Data/StatusID.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Data/TargetHostileType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Data/TargetHostileType.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Data/TargetType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Data/TargetType.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Data/TerritoryContentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Data/TerritoryContentType.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Data/VfxNewData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Data/VfxNewData.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/DataCenter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/DataCenter.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Helpers/ActionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Helpers/ActionHelper.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Helpers/ConfigurationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Helpers/ConfigurationHelper.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Helpers/IActionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Helpers/IActionHelper.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Helpers/MarkingHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Helpers/MarkingHelper.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Helpers/ObjectHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Helpers/ObjectHelper.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Helpers/ReflectionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Helpers/ReflectionHelper.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Helpers/StatusHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Helpers/StatusHelper.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Helpers/TargetFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Helpers/TargetFilter.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/IEnoughLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/IEnoughLevel.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/ITexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/ITexture.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/README.md -------------------------------------------------------------------------------- /RotationSolver.Basic/RotationSolver.Basic.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/RotationSolver.Basic.csproj -------------------------------------------------------------------------------- /RotationSolver.Basic/Rotations/Basic/AST_Base.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Rotations/Basic/AST_Base.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Rotations/Basic/BLM_Base.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Rotations/Basic/BLM_Base.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Rotations/Basic/BLU_Base.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Rotations/Basic/BLU_Base.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Rotations/Basic/BRD_Base.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Rotations/Basic/BRD_Base.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Rotations/Basic/DNC_Base.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Rotations/Basic/DNC_Base.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Rotations/Basic/DRG_Base.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Rotations/Basic/DRG_Base.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Rotations/Basic/DRK_Base.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Rotations/Basic/DRK_Base.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Rotations/Basic/GNB_Base.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Rotations/Basic/GNB_Base.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Rotations/Basic/MCH_Base.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Rotations/Basic/MCH_Base.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Rotations/Basic/MNK_Base.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Rotations/Basic/MNK_Base.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Rotations/Basic/NIN_Base.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Rotations/Basic/NIN_Base.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Rotations/Basic/PLD_Base.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Rotations/Basic/PLD_Base.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Rotations/Basic/RDM_Base.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Rotations/Basic/RDM_Base.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Rotations/Basic/RPR_Base.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Rotations/Basic/RPR_Base.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Rotations/Basic/SAM_Base.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Rotations/Basic/SAM_Base.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Rotations/Basic/SCH_Base.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Rotations/Basic/SCH_Base.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Rotations/Basic/SGE_Base.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Rotations/Basic/SGE_Base.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Rotations/Basic/SMN_Base.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Rotations/Basic/SMN_Base.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Rotations/Basic/WAR_Base.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Rotations/Basic/WAR_Base.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Rotations/Basic/WHM_Base.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Rotations/Basic/WHM_Base.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Rotations/CustomRotation_Ability.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Rotations/CustomRotation_Ability.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Rotations/CustomRotation_Actions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Rotations/CustomRotation_Actions.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Rotations/CustomRotation_BasicInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Rotations/CustomRotation_BasicInfo.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Rotations/CustomRotation_GCD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Rotations/CustomRotation_GCD.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Rotations/CustomRotation_Invoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Rotations/CustomRotation_Invoke.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Rotations/CustomRotation_Medicine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Rotations/CustomRotation_Medicine.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Rotations/CustomRotation_OtherInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Rotations/CustomRotation_OtherInfo.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Rotations/ICustomRotation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Rotations/ICustomRotation.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Rotations/Rotations.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Rotations/Rotations.cd -------------------------------------------------------------------------------- /RotationSolver.Basic/Service.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Service.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Traits/BaseTrait.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Traits/BaseTrait.cs -------------------------------------------------------------------------------- /RotationSolver.Basic/Traits/IBaseTrait.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Basic/Traits/IBaseTrait.cs -------------------------------------------------------------------------------- /RotationSolver.Templates/Full Rotation.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Templates/Full Rotation.zip -------------------------------------------------------------------------------- /RotationSolver.Templates/Rotation Template.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Templates/Rotation Template.zip -------------------------------------------------------------------------------- /RotationSolver.Templates/RotationSolver.ItemTemplates/Full_Template.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Templates/RotationSolver.ItemTemplates/Full_Template.cs -------------------------------------------------------------------------------- /RotationSolver.Templates/RotationSolver.ItemTemplates/RotationSolver.ItemTemplates.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Templates/RotationSolver.ItemTemplates/RotationSolver.ItemTemplates.csproj -------------------------------------------------------------------------------- /RotationSolver.Templates/RotationSolver.ItemTemplates/Simple_Template.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Templates/RotationSolver.ItemTemplates/Simple_Template.cs -------------------------------------------------------------------------------- /RotationSolver.Templates/RotationSolver.ProjectTemplate/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Templates/RotationSolver.ProjectTemplate/AssemblyInfo.cs -------------------------------------------------------------------------------- /RotationSolver.Templates/RotationSolver.ProjectTemplate/RotationSolver.ProjectTemplate.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Templates/RotationSolver.ProjectTemplate/RotationSolver.ProjectTemplate.csproj -------------------------------------------------------------------------------- /RotationSolver.Templates/RotationSolver.Templates.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Templates/RotationSolver.Templates.sln -------------------------------------------------------------------------------- /RotationSolver.Templates/RotationSolver.VSIX/ItemTemplates/Full Rotation.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Templates/RotationSolver.VSIX/ItemTemplates/Full Rotation.zip -------------------------------------------------------------------------------- /RotationSolver.Templates/RotationSolver.VSIX/ItemTemplates/Simple Rotation.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Templates/RotationSolver.VSIX/ItemTemplates/Simple Rotation.zip -------------------------------------------------------------------------------- /RotationSolver.Templates/RotationSolver.VSIX/ProjectTemplates/Rotation Template.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Templates/RotationSolver.VSIX/ProjectTemplates/Rotation Template.zip -------------------------------------------------------------------------------- /RotationSolver.Templates/RotationSolver.VSIX/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Templates/RotationSolver.VSIX/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /RotationSolver.Templates/RotationSolver.VSIX/RotationSolver.VSIX.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Templates/RotationSolver.VSIX/RotationSolver.VSIX.csproj -------------------------------------------------------------------------------- /RotationSolver.Templates/RotationSolver.VSIX/RotationSolver.VSIX.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Templates/RotationSolver.VSIX/RotationSolver.VSIX.csproj.user -------------------------------------------------------------------------------- /RotationSolver.Templates/RotationSolver.VSIX/RotationSolverIcon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Templates/RotationSolver.VSIX/RotationSolverIcon_128.png -------------------------------------------------------------------------------- /RotationSolver.Templates/RotationSolver.VSIX/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Templates/RotationSolver.VSIX/source.extension.vsixmanifest -------------------------------------------------------------------------------- /RotationSolver.Templates/Simple Rotation.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.Templates/Simple Rotation.zip -------------------------------------------------------------------------------- /RotationSolver.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver.sln -------------------------------------------------------------------------------- /RotationSolver/Commands/RSCommands_Actions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver/Commands/RSCommands_Actions.cs -------------------------------------------------------------------------------- /RotationSolver/Commands/RSCommands_BasicInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver/Commands/RSCommands_BasicInfo.cs -------------------------------------------------------------------------------- /RotationSolver/Commands/RSCommands_OtherCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver/Commands/RSCommands_OtherCommand.cs -------------------------------------------------------------------------------- /RotationSolver/Commands/RSCommands_StateSpecialCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver/Commands/RSCommands_StateSpecialCommand.cs -------------------------------------------------------------------------------- /RotationSolver/Data/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver/Data/AssemblyInfo.cs -------------------------------------------------------------------------------- /RotationSolver/Data/CustomRotationGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver/Data/CustomRotationGroup.cs -------------------------------------------------------------------------------- /RotationSolver/Data/DownloadOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver/Data/DownloadOption.cs -------------------------------------------------------------------------------- /RotationSolver/Data/LoadedAssembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver/Data/LoadedAssembly.cs -------------------------------------------------------------------------------- /RotationSolver/Helpers/DownloadHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver/Helpers/DownloadHelper.cs -------------------------------------------------------------------------------- /RotationSolver/Helpers/RotationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver/Helpers/RotationHelper.cs -------------------------------------------------------------------------------- /RotationSolver/Helpers/RotationLoadContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver/Helpers/RotationLoadContext.cs -------------------------------------------------------------------------------- /RotationSolver/Helpers/SpeechHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver/Helpers/SpeechHelper.cs -------------------------------------------------------------------------------- /RotationSolver/Helpers/WarningHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver/Helpers/WarningHelper.cs -------------------------------------------------------------------------------- /RotationSolver/Localization/ConfigTranslation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver/Localization/ConfigTranslation.cs -------------------------------------------------------------------------------- /RotationSolver/Localization/EnumTranslations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver/Localization/EnumTranslations.cs -------------------------------------------------------------------------------- /RotationSolver/Localization/Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver/Localization/Localization.json -------------------------------------------------------------------------------- /RotationSolver/Localization/LocalizationManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver/Localization/LocalizationManager.cs -------------------------------------------------------------------------------- /RotationSolver/Localization/Strings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver/Localization/Strings.cs -------------------------------------------------------------------------------- /RotationSolver/Localization/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver/Localization/de.json -------------------------------------------------------------------------------- /RotationSolver/Localization/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver/Localization/es.json -------------------------------------------------------------------------------- /RotationSolver/Localization/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver/Localization/fr.json -------------------------------------------------------------------------------- /RotationSolver/Localization/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver/Localization/ja.json -------------------------------------------------------------------------------- /RotationSolver/Localization/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver/Localization/zh.json -------------------------------------------------------------------------------- /RotationSolver/RotationSolver.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver/RotationSolver.csproj -------------------------------------------------------------------------------- /RotationSolver/RotationSolver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver/RotationSolver.yaml -------------------------------------------------------------------------------- /RotationSolver/RotationSolverPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver/RotationSolverPlugin.cs -------------------------------------------------------------------------------- /RotationSolver/TextureItems/StatusTexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver/TextureItems/StatusTexture.cs -------------------------------------------------------------------------------- /RotationSolver/UI/CollapsingHeaderGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver/UI/CollapsingHeaderGroup.cs -------------------------------------------------------------------------------- /RotationSolver/UI/ConditionDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver/UI/ConditionDrawer.cs -------------------------------------------------------------------------------- /RotationSolver/UI/ControlWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver/UI/ControlWindow.cs -------------------------------------------------------------------------------- /RotationSolver/UI/CooldownWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver/UI/CooldownWindow.cs -------------------------------------------------------------------------------- /RotationSolver/UI/CtrlWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver/UI/CtrlWindow.cs -------------------------------------------------------------------------------- /RotationSolver/UI/ImGuiHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver/UI/ImGuiHelper.cs -------------------------------------------------------------------------------- /RotationSolver/UI/ImguiTooltips.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver/UI/ImguiTooltips.cs -------------------------------------------------------------------------------- /RotationSolver/UI/NextActionWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver/UI/NextActionWindow.cs -------------------------------------------------------------------------------- /RotationSolver/UI/PainterManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver/UI/PainterManager.cs -------------------------------------------------------------------------------- /RotationSolver/UI/RotationConfigWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver/UI/RotationConfigWindow.cs -------------------------------------------------------------------------------- /RotationSolver/UI/RotationConfigWindowTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver/UI/RotationConfigWindowTab.cs -------------------------------------------------------------------------------- /RotationSolver/UI/RotationConfigWindow_Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver/UI/RotationConfigWindow_Config.cs -------------------------------------------------------------------------------- /RotationSolver/UI/SearchableConfigs/AutoHealCheckBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver/UI/SearchableConfigs/AutoHealCheckBox.cs -------------------------------------------------------------------------------- /RotationSolver/UI/SearchableConfigs/CheckBoxSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver/UI/SearchableConfigs/CheckBoxSearch.cs -------------------------------------------------------------------------------- /RotationSolver/UI/SearchableConfigs/ColorEditSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver/UI/SearchableConfigs/ColorEditSearch.cs -------------------------------------------------------------------------------- /RotationSolver/UI/SearchableConfigs/DragFloatRangeSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver/UI/SearchableConfigs/DragFloatRangeSearch.cs -------------------------------------------------------------------------------- /RotationSolver/UI/SearchableConfigs/DragFloatSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver/UI/SearchableConfigs/DragFloatSearch.cs -------------------------------------------------------------------------------- /RotationSolver/UI/SearchableConfigs/DragIntRangeSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver/UI/SearchableConfigs/DragIntRangeSearch.cs -------------------------------------------------------------------------------- /RotationSolver/UI/SearchableConfigs/DragIntSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver/UI/SearchableConfigs/DragIntSearch.cs -------------------------------------------------------------------------------- /RotationSolver/UI/SearchableConfigs/ISearchable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver/UI/SearchableConfigs/ISearchable.cs -------------------------------------------------------------------------------- /RotationSolver/UI/SearchableConfigs/Searchable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver/UI/SearchableConfigs/Searchable.cs -------------------------------------------------------------------------------- /RotationSolver/Updaters/ActionSequencerUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver/Updaters/ActionSequencerUpdater.cs -------------------------------------------------------------------------------- /RotationSolver/Updaters/ActionUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver/Updaters/ActionUpdater.cs -------------------------------------------------------------------------------- /RotationSolver/Updaters/MacroUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver/Updaters/MacroUpdater.cs -------------------------------------------------------------------------------- /RotationSolver/Updaters/MajorUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver/Updaters/MajorUpdater.cs -------------------------------------------------------------------------------- /RotationSolver/Updaters/MovingUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver/Updaters/MovingUpdater.cs -------------------------------------------------------------------------------- /RotationSolver/Updaters/PreviewUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver/Updaters/PreviewUpdater.cs -------------------------------------------------------------------------------- /RotationSolver/Updaters/RotationUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver/Updaters/RotationUpdater.cs -------------------------------------------------------------------------------- /RotationSolver/Updaters/SocialUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver/Updaters/SocialUpdater.cs -------------------------------------------------------------------------------- /RotationSolver/Updaters/TargetUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver/Updaters/TargetUpdater.cs -------------------------------------------------------------------------------- /RotationSolver/Watcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationSolver/Watcher.cs -------------------------------------------------------------------------------- /RotationsLink.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/RotationsLink.md -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/crowdin.yml -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/ChineseServer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/docs/ChineseServer/README.md -------------------------------------------------------------------------------- /docs/ChineseServer/_sidebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/docs/ChineseServer/_sidebar.md -------------------------------------------------------------------------------- /docs/ChineseServer/assets/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/docs/ChineseServer/assets/image.png -------------------------------------------------------------------------------- /docs/ChineseServer/authors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/docs/ChineseServer/authors.md -------------------------------------------------------------------------------- /docs/ChineseServer/users.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/docs/ChineseServer/users.md -------------------------------------------------------------------------------- /docs/Development/README.md: -------------------------------------------------------------------------------- 1 | # Develop the entire plugin. -------------------------------------------------------------------------------- /docs/Development/_sidebar.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/docs/Icon.ico -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_404.md: -------------------------------------------------------------------------------- 1 | # 404 Not Found! -------------------------------------------------------------------------------- /docs/_coverpage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/docs/_coverpage.md -------------------------------------------------------------------------------- /docs/_navbar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/docs/_navbar.md -------------------------------------------------------------------------------- /docs/_sidebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/docs/_sidebar.md -------------------------------------------------------------------------------- /docs/action.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/docs/action.md -------------------------------------------------------------------------------- /docs/assets/1680587392644.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/docs/assets/1680587392644.png -------------------------------------------------------------------------------- /docs/assets/1680587583305.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/docs/assets/1680587583305.png -------------------------------------------------------------------------------- /docs/assets/1680587915851.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/docs/assets/1680587915851.png -------------------------------------------------------------------------------- /docs/assets/1680588115090.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/docs/assets/1680588115090.png -------------------------------------------------------------------------------- /docs/assets/1680588432784.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/docs/assets/1680588432784.png -------------------------------------------------------------------------------- /docs/assets/1680588677659.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/docs/assets/1680588677659.png -------------------------------------------------------------------------------- /docs/assets/1680589498456.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/docs/assets/1680589498456.png -------------------------------------------------------------------------------- /docs/assets/1680590431366.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/docs/assets/1680590431366.png -------------------------------------------------------------------------------- /docs/assets/1680590541585.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/docs/assets/1680590541585.png -------------------------------------------------------------------------------- /docs/assets/1680965887006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/docs/assets/1680965887006.png -------------------------------------------------------------------------------- /docs/assets/image-20230122152037534.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/docs/assets/image-20230122152037534.png -------------------------------------------------------------------------------- /docs/assets/image-20230122152134510.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/docs/assets/image-20230122152134510.png -------------------------------------------------------------------------------- /docs/assets/image-20230122160756082.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/docs/assets/image-20230122160756082.png -------------------------------------------------------------------------------- /docs/assets/image-20230122161647566.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/docs/assets/image-20230122161647566.png -------------------------------------------------------------------------------- /docs/assets/image-20230122161822896.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/docs/assets/image-20230122161822896.png -------------------------------------------------------------------------------- /docs/assets/image-20230123142747722.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/docs/assets/image-20230123142747722.png -------------------------------------------------------------------------------- /docs/assets/image-20230123142852650.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/docs/assets/image-20230123142852650.png -------------------------------------------------------------------------------- /docs/assets/image-20230123144205172.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/docs/assets/image-20230123144205172.png -------------------------------------------------------------------------------- /docs/assets/image-20230227112019649.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/docs/assets/image-20230227112019649.png -------------------------------------------------------------------------------- /docs/assets/image-20230404141821517.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/docs/assets/image-20230404141821517.png -------------------------------------------------------------------------------- /docs/assets/image-20230404141847740.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/docs/assets/image-20230404141847740.png -------------------------------------------------------------------------------- /docs/assets/image-20230408222335027.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/docs/assets/image-20230408222335027.png -------------------------------------------------------------------------------- /docs/can-use.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/docs/can-use.md -------------------------------------------------------------------------------- /docs/character.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/docs/character.md -------------------------------------------------------------------------------- /docs/configurations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/docs/configurations.md -------------------------------------------------------------------------------- /docs/customization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/docs/customization.md -------------------------------------------------------------------------------- /docs/data-maintenance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/docs/data-maintenance.md -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/rotation-info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/docs/rotation-info.md -------------------------------------------------------------------------------- /docs/rotation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/docs/rotation.md -------------------------------------------------------------------------------- /docs/set-up.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/docs/set-up.md -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaksuhn/RotationSolver/HEAD/manifest.json --------------------------------------------------------------------------------