A RPGMV mod script helps you install mods quickly, and is recommended to be used with git.
-
Before using this script, it is recommended that you make a copy of the game files just in case, or use the script with git. If you have many mods, it is highly recommended to use git for version control.
-
Click
mod_installer.exeand enter a rpgmv game path, e.g.D:/A_RPGMV_GAME -
Enter the number of mods you wish to install, e.g.
3 -
Enter the path of the mod you want to install in order, e.g.
D:/A_RPGMV_GAME_MOD1 D:/A_RPGMV_GAME_MOD2 D:/A_RPGMV_GAME_MOD3 -
Enter whether you want to overwrite save files, e.g.
Y -
Wait patiently for the copy to finish
Execute python -m 'mod_installer.src.main' in project root
- You must have Python 3.10 or above installed. You can check the version with
python -V. - Installation dependencies from requirements.txt
pip install -r requirements.txt - Run
pyinstaller -F mod_installer/src/main.py -n mod_installer.exe
A script that compares files in two folders
- Click
file_diff.exe - Enter the source directory, e.g.
D:/A_RPGMV_GAME_1.0 - Enter the target directory, e.g.
D:/A_RPGMV_GAME_1.1 - Wait patiently for the result of the comparison, finally a message "please press any key to exit the program" will be printed, if you want to interrupt earlier, please press ctrl+C.
Execute python -m 'file_diff.src.main' in project root
- You must have Python 3 installed. You can check the version with
python -V. - Run
pyinstaller -F file_diff/src/main.py -n file_diff.exe