A script to fix Raiden Shogun Boss Phase 1 for all types of mods
Project description
FIX RAIDEN BOSS
- Author Ideal NK#1321
- Thank SilentNightSound#7430 for the logic rewrite
- Thank HazrateGolabi#1364 for combine and make final script
- Thank Albert Gold#2696 for update the code for merged mods
Requirements
VIDEO TUTORIAL AND EXAMPLES:
Quickstart
Individual Mod: https://www.youtube.com/watch?v=29FM0GywcWA
Merged Mods: https://www.youtube.com/watch?v=nEyMYIHdrQM
Mega Merged Mods: https://www.youtube.com/watch?v=08co5ct7zeg
More Features
How to Run
-
Choose your pick of which way to run the script:
- Quickstart! (for beginners)
- CMD WITHOUT a Script (recommended if you run by CMD)
- CMD with a Script (the convention that other GIMI scripts follow)
Let's Start !
STEP 1:
- Copy THIS script into GIMI's
Mod
folder or your Raiden Mod folder
STEP 2:
- Double click on the script
STEP 3:
- Open the game and enjoy it
Run on CMD Without a Script
STEP 1:
- Install the module onto your computer by opening cmd and typing :
python -m pip install -U FixRaidenBoss2
then enter
( you can now run the program anywhere without copying a script! )
STEP 2:
- open cmd in your mod folder and type:
python -m FixRaidenBoss2
then enter
STEP 3:
- Open the game and enjoy it
Run on CMD With a Script
STEP 1:
- Copy THIS script into GIMI's
Mod
folder or your Raiden Mod folder
STEP 2:
- open cmd and type
python FixRaidenBoss2.py
then enter
STEP 3:
- Open the game and enjoy it
Command Options
-h, --help show this help message and exit
-s str, --src str The path to the Raiden mod folder. If this option is not
specified, then will use the current directory as the
mod folder.
-d, --deleteBackup deletes backup copies of the original .ini files
-f, --fixOnly only fixes the mod without cleaning any previous runs of
the script
-r, --revert reverts back previous runs of the script
-l, --log Logs the printed out log into a seperate .txt file
The following options below are deprecated and will be removed in the future
-p, --purgeDups DEPRECATED - deletes unused duplicate .ini or Blend.buf
instead of keeping a disabled backup copy of those
files. Note that duplicate backup copies of .ini or
Blend.buf will no longer be generated by the program
API Usage
Tool developpers can now include the fix within their code.
Make sure you first install the module by typing into cmd:
python -m pip install -U FixRaidenBoss2
Example of Successful Run
import FixRaidenBoss2 as FRB
raidenBossFixService = FRB.RaidenBossFixService(path = r"my raiden folder path", log = True, verbose = False)
raidenBossFixService.fix()
print("The Raiden Mod is fixed!")
Example Result
Creating log file, RSFixLog.txt
The Raiden Mod is fixed!
Example of Handling Errors
import FixRaidenBoss2 as FRB
raidenBossFixService = FRB.RaidenBossFixService(path = r"my raiden folder path that contains a duplicate .ini file", log = True, verbose = False)
print("Starting to fix mod...")
try:
raidenBossFixService.fix()
except FRB.DuplicateFileException as e:
print("The fix failed because there is a duplicate .ini file... :(")
else:
print("The Raiden Mod is fixed!")
Example Result
Starting to fix mod...
Creating log file, RSFixLog.txt
The fix failed because there is a duplicate .ini file... :(
More info here (docs coming out soon...)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file FixRaidenBoss2-3.5.1.tar.gz
.
File metadata
- Download URL: FixRaidenBoss2-3.5.1.tar.gz
- Upload date:
- Size: 20.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b7b3859e2f11150f2aff1dd798cb8d843aaa507214f904bd251b5969b07a48ad |
|
MD5 | 3d8f32998b4f50f0609703714f9feeec |
|
BLAKE2b-256 | 1fe5ace90feef292801314cab6a324b7e7067f22c8c90183453a5695963ace40 |
File details
Details for the file FixRaidenBoss2-3.5.1-py3-none-any.whl
.
File metadata
- Download URL: FixRaidenBoss2-3.5.1-py3-none-any.whl
- Upload date:
- Size: 19.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0bb924ad1bf7aa1724b42dbff48edc00fe9abebcbf45c6c5e2d9bcae28fb3f9d |
|
MD5 | c48caa22a7b2a07db316273f0e17a282 |
|
BLAKE2b-256 | 843cb13b1d1548ce4fbf31e82204fc268000179e43cb4015bcc2ea63315ee0a7 |