├── .gitignore ├── LICENSE ├── README.md ├── TODO.md ├── eng ├── main.md ├── resources │ ├── dev-3 │ │ └── image1.png │ ├── use-1 │ │ ├── image1.png │ │ ├── image2.png │ │ └── image3.png │ └── use-2 │ │ ├── image1.png │ │ ├── image2.png │ │ └── image3.png ├── use-1.md └── use-2.md ├── jap ├── dev-1.md ├── dev-2.md ├── dev-3.md ├── main.md ├── resources │ ├── dev-3 │ │ └── image1.png │ ├── use-1 │ │ ├── image1.png │ │ ├── image2.png │ │ └── image3.png │ └── use-2 │ │ ├── image1.png │ │ ├── image2.png │ │ └── image3.png ├── use-1.md └── use-2.md └── kor ├── dev-1.md ├── dev-2.md ├── dev-3.md ├── main.md ├── resources ├── dev-3 │ └── image1.png ├── use-1 │ ├── how-to-see-version.png │ ├── smartscreen.png │ ├── umm-folder-select.png │ ├── umm-game-dropdown.png │ ├── umm-icon.png │ ├── umm-install.png │ └── umm-method-select.png └── use-2 │ ├── how-to-download-in-github.png │ ├── mm-mod-needs-update.png │ ├── mm-mod-settings.png │ ├── mm-mod-status.png │ ├── umm-auto-update.png │ ├── umm-drop-to-install.gif │ └── umm-select-to-install.gif ├── use-1.md └── use-2.md /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ 2 | .git/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrackThrough/ADOFAI-Mod-Installation-Guide/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrackThrough/ADOFAI-Mod-Installation-Guide/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrackThrough/ADOFAI-Mod-Installation-Guide/HEAD/TODO.md -------------------------------------------------------------------------------- /eng/main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrackThrough/ADOFAI-Mod-Installation-Guide/HEAD/eng/main.md -------------------------------------------------------------------------------- /eng/resources/dev-3/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrackThrough/ADOFAI-Mod-Installation-Guide/HEAD/eng/resources/dev-3/image1.png -------------------------------------------------------------------------------- /eng/resources/use-1/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrackThrough/ADOFAI-Mod-Installation-Guide/HEAD/eng/resources/use-1/image1.png -------------------------------------------------------------------------------- /eng/resources/use-1/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrackThrough/ADOFAI-Mod-Installation-Guide/HEAD/eng/resources/use-1/image2.png -------------------------------------------------------------------------------- /eng/resources/use-1/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrackThrough/ADOFAI-Mod-Installation-Guide/HEAD/eng/resources/use-1/image3.png -------------------------------------------------------------------------------- /eng/resources/use-2/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrackThrough/ADOFAI-Mod-Installation-Guide/HEAD/eng/resources/use-2/image1.png -------------------------------------------------------------------------------- /eng/resources/use-2/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrackThrough/ADOFAI-Mod-Installation-Guide/HEAD/eng/resources/use-2/image2.png -------------------------------------------------------------------------------- /eng/resources/use-2/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrackThrough/ADOFAI-Mod-Installation-Guide/HEAD/eng/resources/use-2/image3.png -------------------------------------------------------------------------------- /eng/use-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrackThrough/ADOFAI-Mod-Installation-Guide/HEAD/eng/use-1.md -------------------------------------------------------------------------------- /eng/use-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrackThrough/ADOFAI-Mod-Installation-Guide/HEAD/eng/use-2.md -------------------------------------------------------------------------------- /jap/dev-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrackThrough/ADOFAI-Mod-Installation-Guide/HEAD/jap/dev-1.md -------------------------------------------------------------------------------- /jap/dev-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrackThrough/ADOFAI-Mod-Installation-Guide/HEAD/jap/dev-2.md -------------------------------------------------------------------------------- /jap/dev-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrackThrough/ADOFAI-Mod-Installation-Guide/HEAD/jap/dev-3.md -------------------------------------------------------------------------------- /jap/main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrackThrough/ADOFAI-Mod-Installation-Guide/HEAD/jap/main.md -------------------------------------------------------------------------------- /jap/resources/dev-3/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrackThrough/ADOFAI-Mod-Installation-Guide/HEAD/jap/resources/dev-3/image1.png -------------------------------------------------------------------------------- /jap/resources/use-1/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrackThrough/ADOFAI-Mod-Installation-Guide/HEAD/jap/resources/use-1/image1.png -------------------------------------------------------------------------------- /jap/resources/use-1/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrackThrough/ADOFAI-Mod-Installation-Guide/HEAD/jap/resources/use-1/image2.png -------------------------------------------------------------------------------- /jap/resources/use-1/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrackThrough/ADOFAI-Mod-Installation-Guide/HEAD/jap/resources/use-1/image3.png -------------------------------------------------------------------------------- /jap/resources/use-2/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrackThrough/ADOFAI-Mod-Installation-Guide/HEAD/jap/resources/use-2/image1.png -------------------------------------------------------------------------------- /jap/resources/use-2/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrackThrough/ADOFAI-Mod-Installation-Guide/HEAD/jap/resources/use-2/image2.png -------------------------------------------------------------------------------- /jap/resources/use-2/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrackThrough/ADOFAI-Mod-Installation-Guide/HEAD/jap/resources/use-2/image3.png -------------------------------------------------------------------------------- /jap/use-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrackThrough/ADOFAI-Mod-Installation-Guide/HEAD/jap/use-1.md -------------------------------------------------------------------------------- /jap/use-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrackThrough/ADOFAI-Mod-Installation-Guide/HEAD/jap/use-2.md -------------------------------------------------------------------------------- /kor/dev-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrackThrough/ADOFAI-Mod-Installation-Guide/HEAD/kor/dev-1.md -------------------------------------------------------------------------------- /kor/dev-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrackThrough/ADOFAI-Mod-Installation-Guide/HEAD/kor/dev-2.md -------------------------------------------------------------------------------- /kor/dev-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrackThrough/ADOFAI-Mod-Installation-Guide/HEAD/kor/dev-3.md -------------------------------------------------------------------------------- /kor/main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrackThrough/ADOFAI-Mod-Installation-Guide/HEAD/kor/main.md -------------------------------------------------------------------------------- /kor/resources/dev-3/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrackThrough/ADOFAI-Mod-Installation-Guide/HEAD/kor/resources/dev-3/image1.png -------------------------------------------------------------------------------- /kor/resources/use-1/how-to-see-version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrackThrough/ADOFAI-Mod-Installation-Guide/HEAD/kor/resources/use-1/how-to-see-version.png -------------------------------------------------------------------------------- /kor/resources/use-1/smartscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrackThrough/ADOFAI-Mod-Installation-Guide/HEAD/kor/resources/use-1/smartscreen.png -------------------------------------------------------------------------------- /kor/resources/use-1/umm-folder-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrackThrough/ADOFAI-Mod-Installation-Guide/HEAD/kor/resources/use-1/umm-folder-select.png -------------------------------------------------------------------------------- /kor/resources/use-1/umm-game-dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrackThrough/ADOFAI-Mod-Installation-Guide/HEAD/kor/resources/use-1/umm-game-dropdown.png -------------------------------------------------------------------------------- /kor/resources/use-1/umm-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrackThrough/ADOFAI-Mod-Installation-Guide/HEAD/kor/resources/use-1/umm-icon.png -------------------------------------------------------------------------------- /kor/resources/use-1/umm-install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrackThrough/ADOFAI-Mod-Installation-Guide/HEAD/kor/resources/use-1/umm-install.png -------------------------------------------------------------------------------- /kor/resources/use-1/umm-method-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrackThrough/ADOFAI-Mod-Installation-Guide/HEAD/kor/resources/use-1/umm-method-select.png -------------------------------------------------------------------------------- /kor/resources/use-2/how-to-download-in-github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrackThrough/ADOFAI-Mod-Installation-Guide/HEAD/kor/resources/use-2/how-to-download-in-github.png -------------------------------------------------------------------------------- /kor/resources/use-2/mm-mod-needs-update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrackThrough/ADOFAI-Mod-Installation-Guide/HEAD/kor/resources/use-2/mm-mod-needs-update.png -------------------------------------------------------------------------------- /kor/resources/use-2/mm-mod-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrackThrough/ADOFAI-Mod-Installation-Guide/HEAD/kor/resources/use-2/mm-mod-settings.png -------------------------------------------------------------------------------- /kor/resources/use-2/mm-mod-status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrackThrough/ADOFAI-Mod-Installation-Guide/HEAD/kor/resources/use-2/mm-mod-status.png -------------------------------------------------------------------------------- /kor/resources/use-2/umm-auto-update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrackThrough/ADOFAI-Mod-Installation-Guide/HEAD/kor/resources/use-2/umm-auto-update.png -------------------------------------------------------------------------------- /kor/resources/use-2/umm-drop-to-install.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrackThrough/ADOFAI-Mod-Installation-Guide/HEAD/kor/resources/use-2/umm-drop-to-install.gif -------------------------------------------------------------------------------- /kor/resources/use-2/umm-select-to-install.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrackThrough/ADOFAI-Mod-Installation-Guide/HEAD/kor/resources/use-2/umm-select-to-install.gif -------------------------------------------------------------------------------- /kor/use-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrackThrough/ADOFAI-Mod-Installation-Guide/HEAD/kor/use-1.md -------------------------------------------------------------------------------- /kor/use-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrackThrough/ADOFAI-Mod-Installation-Guide/HEAD/kor/use-2.md --------------------------------------------------------------------------------