├── .gitignore ├── KeySwitch.ahk ├── LICENSE ├── README.md ├── SRES.ahk ├── core ├── Color.ahk ├── Point.ahk ├── PointExtractor.ahk ├── Pos.ahk ├── Scenes.ahk ├── StarRail.ahk └── Tools.ahk ├── files ├── docs │ └── Multiresolution.md └── images │ ├── goBtn.png │ ├── goBtn2.png │ ├── goBtn2_1440.png │ ├── goBtn_1440.png │ ├── startTracking.bmp │ ├── startTracking2.png │ ├── teleport1.png │ ├── teleport2.png │ ├── teleportBtn.png │ ├── teleportBtn1440.png │ └── teleportBtn2.png ├── keys1.ahk ├── module ├── Achievement.ahk ├── Artifact.ahk ├── Assignments.ahk ├── BattlePass.ahk ├── DailyTraining.ahk ├── GetAllDailyRewards.ahk ├── SimulatedUniverseIndex.ahk ├── Team.ahk ├── Teleport.ahk ├── ThirdPartyTools.ahk └── VolumeControl.ps1 └── test.ahk /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reroll24/StarRail-EasyScript/HEAD/.gitignore -------------------------------------------------------------------------------- /KeySwitch.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reroll24/StarRail-EasyScript/HEAD/KeySwitch.ahk -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reroll24/StarRail-EasyScript/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reroll24/StarRail-EasyScript/HEAD/README.md -------------------------------------------------------------------------------- /SRES.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reroll24/StarRail-EasyScript/HEAD/SRES.ahk -------------------------------------------------------------------------------- /core/Color.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reroll24/StarRail-EasyScript/HEAD/core/Color.ahk -------------------------------------------------------------------------------- /core/Point.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reroll24/StarRail-EasyScript/HEAD/core/Point.ahk -------------------------------------------------------------------------------- /core/PointExtractor.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reroll24/StarRail-EasyScript/HEAD/core/PointExtractor.ahk -------------------------------------------------------------------------------- /core/Pos.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reroll24/StarRail-EasyScript/HEAD/core/Pos.ahk -------------------------------------------------------------------------------- /core/Scenes.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reroll24/StarRail-EasyScript/HEAD/core/Scenes.ahk -------------------------------------------------------------------------------- /core/StarRail.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reroll24/StarRail-EasyScript/HEAD/core/StarRail.ahk -------------------------------------------------------------------------------- /core/Tools.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reroll24/StarRail-EasyScript/HEAD/core/Tools.ahk -------------------------------------------------------------------------------- /files/docs/Multiresolution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reroll24/StarRail-EasyScript/HEAD/files/docs/Multiresolution.md -------------------------------------------------------------------------------- /files/images/goBtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reroll24/StarRail-EasyScript/HEAD/files/images/goBtn.png -------------------------------------------------------------------------------- /files/images/goBtn2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reroll24/StarRail-EasyScript/HEAD/files/images/goBtn2.png -------------------------------------------------------------------------------- /files/images/goBtn2_1440.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reroll24/StarRail-EasyScript/HEAD/files/images/goBtn2_1440.png -------------------------------------------------------------------------------- /files/images/goBtn_1440.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reroll24/StarRail-EasyScript/HEAD/files/images/goBtn_1440.png -------------------------------------------------------------------------------- /files/images/startTracking.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reroll24/StarRail-EasyScript/HEAD/files/images/startTracking.bmp -------------------------------------------------------------------------------- /files/images/startTracking2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reroll24/StarRail-EasyScript/HEAD/files/images/startTracking2.png -------------------------------------------------------------------------------- /files/images/teleport1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reroll24/StarRail-EasyScript/HEAD/files/images/teleport1.png -------------------------------------------------------------------------------- /files/images/teleport2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reroll24/StarRail-EasyScript/HEAD/files/images/teleport2.png -------------------------------------------------------------------------------- /files/images/teleportBtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reroll24/StarRail-EasyScript/HEAD/files/images/teleportBtn.png -------------------------------------------------------------------------------- /files/images/teleportBtn1440.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reroll24/StarRail-EasyScript/HEAD/files/images/teleportBtn1440.png -------------------------------------------------------------------------------- /files/images/teleportBtn2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reroll24/StarRail-EasyScript/HEAD/files/images/teleportBtn2.png -------------------------------------------------------------------------------- /keys1.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reroll24/StarRail-EasyScript/HEAD/keys1.ahk -------------------------------------------------------------------------------- /module/Achievement.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reroll24/StarRail-EasyScript/HEAD/module/Achievement.ahk -------------------------------------------------------------------------------- /module/Artifact.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reroll24/StarRail-EasyScript/HEAD/module/Artifact.ahk -------------------------------------------------------------------------------- /module/Assignments.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reroll24/StarRail-EasyScript/HEAD/module/Assignments.ahk -------------------------------------------------------------------------------- /module/BattlePass.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reroll24/StarRail-EasyScript/HEAD/module/BattlePass.ahk -------------------------------------------------------------------------------- /module/DailyTraining.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reroll24/StarRail-EasyScript/HEAD/module/DailyTraining.ahk -------------------------------------------------------------------------------- /module/GetAllDailyRewards.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reroll24/StarRail-EasyScript/HEAD/module/GetAllDailyRewards.ahk -------------------------------------------------------------------------------- /module/SimulatedUniverseIndex.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reroll24/StarRail-EasyScript/HEAD/module/SimulatedUniverseIndex.ahk -------------------------------------------------------------------------------- /module/Team.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reroll24/StarRail-EasyScript/HEAD/module/Team.ahk -------------------------------------------------------------------------------- /module/Teleport.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reroll24/StarRail-EasyScript/HEAD/module/Teleport.ahk -------------------------------------------------------------------------------- /module/ThirdPartyTools.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reroll24/StarRail-EasyScript/HEAD/module/ThirdPartyTools.ahk -------------------------------------------------------------------------------- /module/VolumeControl.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reroll24/StarRail-EasyScript/HEAD/module/VolumeControl.ps1 -------------------------------------------------------------------------------- /test.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reroll24/StarRail-EasyScript/HEAD/test.ahk --------------------------------------------------------------------------------