├── .gitignore ├── Common ├── .gitignore ├── Acfun │ ├── .gitignore │ ├── GetAVUPData.ahk │ ├── GetAVUPData.ps1 │ ├── README.md │ └── list.json ├── BaiduPanDownload.ps1 ├── Excel2MySql │ ├── README.md │ ├── config.example.json │ └── excel2mysql.py ├── GetCookies │ ├── .gitignore │ ├── config.example.json │ ├── get_cookies.py │ └── update_cookies.ps1 ├── GetStreamLink │ ├── .gitignore │ ├── GetStreamLink.ps1 │ ├── GetStreamLinkGBK.ps1 │ └── README.md ├── GitUtils │ ├── README.md │ ├── ci.ps1 │ └── run.ps1 ├── Logitech_Lua │ ├── README.md │ ├── logitech_common v0.9.0.lua │ ├── logitech_common v0.9.1.lua │ ├── logitech_common v0.9.2.lua │ └── logitech_useful v0.0.1.lua └── Win2Linux │ ├── README.md │ └── Win2Linux.ps1 ├── Game ├── .gitignore ├── Diablo3 │ ├── Diablo3Config.ahk │ ├── Diablo3Debug.ahk │ ├── Diablo3Main.ahk │ ├── README.md │ └── d3.ico ├── DoNotStarveTogether │ └── install_dst.sh ├── Jx3 │ ├── Jx3Config.ahk │ ├── Jx3Debug.ahk │ ├── Jx3Main.ahk │ ├── KeyboardDrive32API.ahk │ ├── KeyboardDrive64API.ahk │ ├── README.md │ ├── drive │ │ ├── x32 │ │ │ └── DD.dll │ │ └── x64 │ │ │ └── DD.dll │ └── test_dll.py ├── Steam │ ├── .gitignore │ ├── README.md │ ├── TestBug.ps1 │ ├── install_asf.ps1 │ └── install_asf.sh └── 修复提示框乱码.ahk ├── LICENSE ├── MetaUtils ├── PowerShell │ ├── 1_Beginning.ps1 │ ├── 2_CheckSystem.ps1 │ ├── 3_LogFormat.ps1 │ └── 4_MessageBox.ps1 ├── README.md └── Shell │ ├── 1_Beginning.sh │ ├── 2_CheckSystem.sh │ └── 3_LogFormat.sh ├── README.md └── push.ps1 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unacro/AutoTaskScripts/HEAD/.gitignore -------------------------------------------------------------------------------- /Common/.gitignore: -------------------------------------------------------------------------------- 1 | AutoClick/ 2 | -------------------------------------------------------------------------------- /Common/Acfun/.gitignore: -------------------------------------------------------------------------------- 1 | AcFun_Vtuber_Data_* 2 | -------------------------------------------------------------------------------- /Common/Acfun/GetAVUPData.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unacro/AutoTaskScripts/HEAD/Common/Acfun/GetAVUPData.ahk -------------------------------------------------------------------------------- /Common/Acfun/GetAVUPData.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unacro/AutoTaskScripts/HEAD/Common/Acfun/GetAVUPData.ps1 -------------------------------------------------------------------------------- /Common/Acfun/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unacro/AutoTaskScripts/HEAD/Common/Acfun/README.md -------------------------------------------------------------------------------- /Common/Acfun/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unacro/AutoTaskScripts/HEAD/Common/Acfun/list.json -------------------------------------------------------------------------------- /Common/BaiduPanDownload.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unacro/AutoTaskScripts/HEAD/Common/BaiduPanDownload.ps1 -------------------------------------------------------------------------------- /Common/Excel2MySql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unacro/AutoTaskScripts/HEAD/Common/Excel2MySql/README.md -------------------------------------------------------------------------------- /Common/Excel2MySql/config.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unacro/AutoTaskScripts/HEAD/Common/Excel2MySql/config.example.json -------------------------------------------------------------------------------- /Common/Excel2MySql/excel2mysql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unacro/AutoTaskScripts/HEAD/Common/Excel2MySql/excel2mysql.py -------------------------------------------------------------------------------- /Common/GetCookies/.gitignore: -------------------------------------------------------------------------------- 1 | cookies/ 2 | -------------------------------------------------------------------------------- /Common/GetCookies/config.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unacro/AutoTaskScripts/HEAD/Common/GetCookies/config.example.json -------------------------------------------------------------------------------- /Common/GetCookies/get_cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unacro/AutoTaskScripts/HEAD/Common/GetCookies/get_cookies.py -------------------------------------------------------------------------------- /Common/GetCookies/update_cookies.ps1: -------------------------------------------------------------------------------- 1 | python get_cookies.py 2 | Write-Host "Press Any Key to Quit." 3 | [Console]::Readkey() | Out-Null 4 | exit 5 | -------------------------------------------------------------------------------- /Common/GetStreamLink/.gitignore: -------------------------------------------------------------------------------- 1 | live/ 2 | -------------------------------------------------------------------------------- /Common/GetStreamLink/GetStreamLink.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unacro/AutoTaskScripts/HEAD/Common/GetStreamLink/GetStreamLink.ps1 -------------------------------------------------------------------------------- /Common/GetStreamLink/GetStreamLinkGBK.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unacro/AutoTaskScripts/HEAD/Common/GetStreamLink/GetStreamLinkGBK.ps1 -------------------------------------------------------------------------------- /Common/GetStreamLink/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unacro/AutoTaskScripts/HEAD/Common/GetStreamLink/README.md -------------------------------------------------------------------------------- /Common/GitUtils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unacro/AutoTaskScripts/HEAD/Common/GitUtils/README.md -------------------------------------------------------------------------------- /Common/GitUtils/ci.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unacro/AutoTaskScripts/HEAD/Common/GitUtils/ci.ps1 -------------------------------------------------------------------------------- /Common/GitUtils/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unacro/AutoTaskScripts/HEAD/Common/GitUtils/run.ps1 -------------------------------------------------------------------------------- /Common/Logitech_Lua/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unacro/AutoTaskScripts/HEAD/Common/Logitech_Lua/README.md -------------------------------------------------------------------------------- /Common/Logitech_Lua/logitech_common v0.9.0.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unacro/AutoTaskScripts/HEAD/Common/Logitech_Lua/logitech_common v0.9.0.lua -------------------------------------------------------------------------------- /Common/Logitech_Lua/logitech_common v0.9.1.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unacro/AutoTaskScripts/HEAD/Common/Logitech_Lua/logitech_common v0.9.1.lua -------------------------------------------------------------------------------- /Common/Logitech_Lua/logitech_common v0.9.2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unacro/AutoTaskScripts/HEAD/Common/Logitech_Lua/logitech_common v0.9.2.lua -------------------------------------------------------------------------------- /Common/Logitech_Lua/logitech_useful v0.0.1.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unacro/AutoTaskScripts/HEAD/Common/Logitech_Lua/logitech_useful v0.0.1.lua -------------------------------------------------------------------------------- /Common/Win2Linux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unacro/AutoTaskScripts/HEAD/Common/Win2Linux/README.md -------------------------------------------------------------------------------- /Common/Win2Linux/Win2Linux.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unacro/AutoTaskScripts/HEAD/Common/Win2Linux/Win2Linux.ps1 -------------------------------------------------------------------------------- /Game/.gitignore: -------------------------------------------------------------------------------- 1 | # developing 2 | -------------------------------------------------------------------------------- /Game/Diablo3/Diablo3Config.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unacro/AutoTaskScripts/HEAD/Game/Diablo3/Diablo3Config.ahk -------------------------------------------------------------------------------- /Game/Diablo3/Diablo3Debug.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unacro/AutoTaskScripts/HEAD/Game/Diablo3/Diablo3Debug.ahk -------------------------------------------------------------------------------- /Game/Diablo3/Diablo3Main.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unacro/AutoTaskScripts/HEAD/Game/Diablo3/Diablo3Main.ahk -------------------------------------------------------------------------------- /Game/Diablo3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unacro/AutoTaskScripts/HEAD/Game/Diablo3/README.md -------------------------------------------------------------------------------- /Game/Diablo3/d3.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unacro/AutoTaskScripts/HEAD/Game/Diablo3/d3.ico -------------------------------------------------------------------------------- /Game/DoNotStarveTogether/install_dst.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unacro/AutoTaskScripts/HEAD/Game/DoNotStarveTogether/install_dst.sh -------------------------------------------------------------------------------- /Game/Jx3/Jx3Config.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unacro/AutoTaskScripts/HEAD/Game/Jx3/Jx3Config.ahk -------------------------------------------------------------------------------- /Game/Jx3/Jx3Debug.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unacro/AutoTaskScripts/HEAD/Game/Jx3/Jx3Debug.ahk -------------------------------------------------------------------------------- /Game/Jx3/Jx3Main.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unacro/AutoTaskScripts/HEAD/Game/Jx3/Jx3Main.ahk -------------------------------------------------------------------------------- /Game/Jx3/KeyboardDrive32API.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unacro/AutoTaskScripts/HEAD/Game/Jx3/KeyboardDrive32API.ahk -------------------------------------------------------------------------------- /Game/Jx3/KeyboardDrive64API.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unacro/AutoTaskScripts/HEAD/Game/Jx3/KeyboardDrive64API.ahk -------------------------------------------------------------------------------- /Game/Jx3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unacro/AutoTaskScripts/HEAD/Game/Jx3/README.md -------------------------------------------------------------------------------- /Game/Jx3/drive/x32/DD.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unacro/AutoTaskScripts/HEAD/Game/Jx3/drive/x32/DD.dll -------------------------------------------------------------------------------- /Game/Jx3/drive/x64/DD.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unacro/AutoTaskScripts/HEAD/Game/Jx3/drive/x64/DD.dll -------------------------------------------------------------------------------- /Game/Jx3/test_dll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unacro/AutoTaskScripts/HEAD/Game/Jx3/test_dll.py -------------------------------------------------------------------------------- /Game/Steam/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unacro/AutoTaskScripts/HEAD/Game/Steam/.gitignore -------------------------------------------------------------------------------- /Game/Steam/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unacro/AutoTaskScripts/HEAD/Game/Steam/README.md -------------------------------------------------------------------------------- /Game/Steam/TestBug.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unacro/AutoTaskScripts/HEAD/Game/Steam/TestBug.ps1 -------------------------------------------------------------------------------- /Game/Steam/install_asf.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unacro/AutoTaskScripts/HEAD/Game/Steam/install_asf.ps1 -------------------------------------------------------------------------------- /Game/Steam/install_asf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unacro/AutoTaskScripts/HEAD/Game/Steam/install_asf.sh -------------------------------------------------------------------------------- /Game/修复提示框乱码.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unacro/AutoTaskScripts/HEAD/Game/修复提示框乱码.ahk -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unacro/AutoTaskScripts/HEAD/LICENSE -------------------------------------------------------------------------------- /MetaUtils/PowerShell/1_Beginning.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unacro/AutoTaskScripts/HEAD/MetaUtils/PowerShell/1_Beginning.ps1 -------------------------------------------------------------------------------- /MetaUtils/PowerShell/2_CheckSystem.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unacro/AutoTaskScripts/HEAD/MetaUtils/PowerShell/2_CheckSystem.ps1 -------------------------------------------------------------------------------- /MetaUtils/PowerShell/3_LogFormat.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unacro/AutoTaskScripts/HEAD/MetaUtils/PowerShell/3_LogFormat.ps1 -------------------------------------------------------------------------------- /MetaUtils/PowerShell/4_MessageBox.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unacro/AutoTaskScripts/HEAD/MetaUtils/PowerShell/4_MessageBox.ps1 -------------------------------------------------------------------------------- /MetaUtils/README.md: -------------------------------------------------------------------------------- 1 | 各种轮子 -------------------------------------------------------------------------------- /MetaUtils/Shell/1_Beginning.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unacro/AutoTaskScripts/HEAD/MetaUtils/Shell/1_Beginning.sh -------------------------------------------------------------------------------- /MetaUtils/Shell/2_CheckSystem.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unacro/AutoTaskScripts/HEAD/MetaUtils/Shell/2_CheckSystem.sh -------------------------------------------------------------------------------- /MetaUtils/Shell/3_LogFormat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unacro/AutoTaskScripts/HEAD/MetaUtils/Shell/3_LogFormat.sh -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unacro/AutoTaskScripts/HEAD/README.md -------------------------------------------------------------------------------- /push.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unacro/AutoTaskScripts/HEAD/push.ps1 --------------------------------------------------------------------------------