├── .gitattributes ├── .gitignore ├── .vscode └── launch.json ├── LICENSE ├── assets ├── base │ ├── default │ │ ├── mod_packaging │ │ │ ├── persistent_files │ │ │ │ └── ModName_P │ │ │ │ │ └── UprojectName │ │ │ │ │ ├── Config │ │ │ │ │ └── empty.ini │ │ │ │ │ └── Content │ │ │ │ │ └── empty.txt │ │ │ └── releases │ │ │ │ └── persistent_files │ │ │ │ └── ModName_P │ │ │ │ ├── LICENSE │ │ │ │ ├── credits.txt │ │ │ │ ├── instructions.txt │ │ │ │ └── place_holder.txt │ │ └── settings.json │ ├── help.bat │ ├── project_updater │ │ ├── LICENSE │ │ └── project_updater.exe │ ├── run_default.bat │ ├── run_default_headless.bat │ ├── template │ │ ├── mod_packaging │ │ │ └── persistent_files │ │ │ │ └── ModName_P │ │ │ │ └── UprojectName │ │ │ │ ├── Config │ │ │ │ └── empty.ini │ │ │ │ ├── Content │ │ │ │ └── empty.txt │ │ │ │ └── releases │ │ │ │ └── persistent_files │ │ │ │ └── ModName_P │ │ │ │ ├── LICENSE │ │ │ │ ├── credits.txt │ │ │ │ ├── instructions.txt │ │ │ │ └── place_holder.txt │ │ └── settings.json │ └── unreal_auto_mod_updater.bat ├── dev_tools │ ├── LICENSE │ ├── cleanup_repo.bat │ ├── dev_tools_updater │ │ ├── LICENSE │ │ └── project_updater.exe │ ├── lint_code.bat │ ├── make_exe_release.bat │ ├── py_project_dev_tools.exe │ ├── refresh_deps.bat │ ├── setup_virtual_environment.bat │ ├── test_exe_release.bat │ ├── test_virtual_environment.bat │ ├── update_dev_tools.bat │ └── upload_latest_to_repo.bat └── images │ ├── ButtonIcon_40x.png │ ├── Icon128.png │ ├── UnrealAutoModIcon.png │ └── project_main_icon.ico ├── docs ├── enums.md ├── faq.md ├── settings_json.md └── to_do_list.md ├── pyproject.toml ├── readme.md ├── requirements.txt └── src └── unreal_auto_mod ├── .gitignore ├── __init__.py ├── __main__.py ├── cli.py ├── cli_py.py ├── console.py ├── engine.py ├── enums.py ├── game_runner.py ├── gen_py_utils.py ├── log_info.py ├── log_py.py ├── mods.py ├── packing.py ├── repak_utilities.py ├── script_states.py ├── settings.py ├── thread_constant.py ├── thread_engine_monitor.py ├── thread_game_monitor.py ├── ue_dev_py_enums.py ├── ue_dev_py_utils.py ├── unreal_pak.py ├── utilities.py ├── win_man_enums.py └── win_man_py.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/LICENSE -------------------------------------------------------------------------------- /assets/base/default/mod_packaging/persistent_files/ModName_P/UprojectName/Config/empty.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/base/default/mod_packaging/persistent_files/ModName_P/UprojectName/Content/empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/base/default/mod_packaging/releases/persistent_files/ModName_P/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/assets/base/default/mod_packaging/releases/persistent_files/ModName_P/LICENSE -------------------------------------------------------------------------------- /assets/base/default/mod_packaging/releases/persistent_files/ModName_P/credits.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/base/default/mod_packaging/releases/persistent_files/ModName_P/instructions.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/base/default/mod_packaging/releases/persistent_files/ModName_P/place_holder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/base/default/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/assets/base/default/settings.json -------------------------------------------------------------------------------- /assets/base/help.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/assets/base/help.bat -------------------------------------------------------------------------------- /assets/base/project_updater/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/assets/base/project_updater/LICENSE -------------------------------------------------------------------------------- /assets/base/project_updater/project_updater.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/assets/base/project_updater/project_updater.exe -------------------------------------------------------------------------------- /assets/base/run_default.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/assets/base/run_default.bat -------------------------------------------------------------------------------- /assets/base/run_default_headless.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/assets/base/run_default_headless.bat -------------------------------------------------------------------------------- /assets/base/template/mod_packaging/persistent_files/ModName_P/UprojectName/Config/empty.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/base/template/mod_packaging/persistent_files/ModName_P/UprojectName/Content/empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/base/template/mod_packaging/persistent_files/ModName_P/UprojectName/releases/persistent_files/ModName_P/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/assets/base/template/mod_packaging/persistent_files/ModName_P/UprojectName/releases/persistent_files/ModName_P/LICENSE -------------------------------------------------------------------------------- /assets/base/template/mod_packaging/persistent_files/ModName_P/UprojectName/releases/persistent_files/ModName_P/credits.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/base/template/mod_packaging/persistent_files/ModName_P/UprojectName/releases/persistent_files/ModName_P/instructions.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/base/template/mod_packaging/persistent_files/ModName_P/UprojectName/releases/persistent_files/ModName_P/place_holder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/base/template/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/assets/base/template/settings.json -------------------------------------------------------------------------------- /assets/base/unreal_auto_mod_updater.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/assets/base/unreal_auto_mod_updater.bat -------------------------------------------------------------------------------- /assets/dev_tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/assets/dev_tools/LICENSE -------------------------------------------------------------------------------- /assets/dev_tools/cleanup_repo.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/assets/dev_tools/cleanup_repo.bat -------------------------------------------------------------------------------- /assets/dev_tools/dev_tools_updater/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/assets/dev_tools/dev_tools_updater/LICENSE -------------------------------------------------------------------------------- /assets/dev_tools/dev_tools_updater/project_updater.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/assets/dev_tools/dev_tools_updater/project_updater.exe -------------------------------------------------------------------------------- /assets/dev_tools/lint_code.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/assets/dev_tools/lint_code.bat -------------------------------------------------------------------------------- /assets/dev_tools/make_exe_release.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/assets/dev_tools/make_exe_release.bat -------------------------------------------------------------------------------- /assets/dev_tools/py_project_dev_tools.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/assets/dev_tools/py_project_dev_tools.exe -------------------------------------------------------------------------------- /assets/dev_tools/refresh_deps.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/assets/dev_tools/refresh_deps.bat -------------------------------------------------------------------------------- /assets/dev_tools/setup_virtual_environment.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/assets/dev_tools/setup_virtual_environment.bat -------------------------------------------------------------------------------- /assets/dev_tools/test_exe_release.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/assets/dev_tools/test_exe_release.bat -------------------------------------------------------------------------------- /assets/dev_tools/test_virtual_environment.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/assets/dev_tools/test_virtual_environment.bat -------------------------------------------------------------------------------- /assets/dev_tools/update_dev_tools.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/assets/dev_tools/update_dev_tools.bat -------------------------------------------------------------------------------- /assets/dev_tools/upload_latest_to_repo.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/assets/dev_tools/upload_latest_to_repo.bat -------------------------------------------------------------------------------- /assets/images/ButtonIcon_40x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/assets/images/ButtonIcon_40x.png -------------------------------------------------------------------------------- /assets/images/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/assets/images/Icon128.png -------------------------------------------------------------------------------- /assets/images/UnrealAutoModIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/assets/images/UnrealAutoModIcon.png -------------------------------------------------------------------------------- /assets/images/project_main_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/assets/images/project_main_icon.ico -------------------------------------------------------------------------------- /docs/enums.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/docs/enums.md -------------------------------------------------------------------------------- /docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/docs/faq.md -------------------------------------------------------------------------------- /docs/settings_json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/docs/settings_json.md -------------------------------------------------------------------------------- /docs/to_do_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/docs/to_do_list.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/pyproject.toml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/unreal_auto_mod/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/src/unreal_auto_mod/.gitignore -------------------------------------------------------------------------------- /src/unreal_auto_mod/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/unreal_auto_mod/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/src/unreal_auto_mod/__main__.py -------------------------------------------------------------------------------- /src/unreal_auto_mod/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/src/unreal_auto_mod/cli.py -------------------------------------------------------------------------------- /src/unreal_auto_mod/cli_py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/src/unreal_auto_mod/cli_py.py -------------------------------------------------------------------------------- /src/unreal_auto_mod/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/src/unreal_auto_mod/console.py -------------------------------------------------------------------------------- /src/unreal_auto_mod/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/src/unreal_auto_mod/engine.py -------------------------------------------------------------------------------- /src/unreal_auto_mod/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/src/unreal_auto_mod/enums.py -------------------------------------------------------------------------------- /src/unreal_auto_mod/game_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/src/unreal_auto_mod/game_runner.py -------------------------------------------------------------------------------- /src/unreal_auto_mod/gen_py_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/src/unreal_auto_mod/gen_py_utils.py -------------------------------------------------------------------------------- /src/unreal_auto_mod/log_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/src/unreal_auto_mod/log_info.py -------------------------------------------------------------------------------- /src/unreal_auto_mod/log_py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/src/unreal_auto_mod/log_py.py -------------------------------------------------------------------------------- /src/unreal_auto_mod/mods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/src/unreal_auto_mod/mods.py -------------------------------------------------------------------------------- /src/unreal_auto_mod/packing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/src/unreal_auto_mod/packing.py -------------------------------------------------------------------------------- /src/unreal_auto_mod/repak_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/src/unreal_auto_mod/repak_utilities.py -------------------------------------------------------------------------------- /src/unreal_auto_mod/script_states.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/src/unreal_auto_mod/script_states.py -------------------------------------------------------------------------------- /src/unreal_auto_mod/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/src/unreal_auto_mod/settings.py -------------------------------------------------------------------------------- /src/unreal_auto_mod/thread_constant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/src/unreal_auto_mod/thread_constant.py -------------------------------------------------------------------------------- /src/unreal_auto_mod/thread_engine_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/src/unreal_auto_mod/thread_engine_monitor.py -------------------------------------------------------------------------------- /src/unreal_auto_mod/thread_game_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/src/unreal_auto_mod/thread_game_monitor.py -------------------------------------------------------------------------------- /src/unreal_auto_mod/ue_dev_py_enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/src/unreal_auto_mod/ue_dev_py_enums.py -------------------------------------------------------------------------------- /src/unreal_auto_mod/ue_dev_py_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/src/unreal_auto_mod/ue_dev_py_utils.py -------------------------------------------------------------------------------- /src/unreal_auto_mod/unreal_pak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/src/unreal_auto_mod/unreal_pak.py -------------------------------------------------------------------------------- /src/unreal_auto_mod/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/src/unreal_auto_mod/utilities.py -------------------------------------------------------------------------------- /src/unreal_auto_mod/win_man_enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/src/unreal_auto_mod/win_man_enums.py -------------------------------------------------------------------------------- /src/unreal_auto_mod/win_man_py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mythical-Github/unreal_auto_mod/HEAD/src/unreal_auto_mod/win_man_py.py --------------------------------------------------------------------------------