MultiMC
Do NOT disable "API" or "library" mods, because the other mods need them.
Instructions vary depending on whether you had installed FO on MultiMC with the easier installation or with automatic updates.
Open MultiMC
Right-click on Fabulously Optimized
Click on the Instance Folder button
While holding ⇧ Shift, right-click inside of the folder
Click on Open in Terminal or Open with PowerShell or similar
Run the following commands to download the scripts that will disable the mods:
(Invoke-WebRequest -Uri "https://raw.githubusercontent.com/Fabulously-Optimized/fabulously-optimized/main/Packwiz/pre-launch.ps1" -OutFile "pre-launch.ps1") (Invoke-WebRequest -Uri "https://raw.githubusercontent.com/Fabulously-Optimized/fabulously-optimized/main/Packwiz/post-exit.ps1" -OutFile "post-exit.ps1")This should download two files:
pre-launch.ps1andpost-exit.ps1Open
pre-launch.ps1in a text editor. You should find a list of mods starting on line 4Copy the name of the mod you want to disable
Paste the name of the mod in the line you found in step 7
Disable more mods by adding them under line 4 with the same format
Go back to MultiMC
Click on Fabulously Optimized
Click on Edit Instance
Replace the pre-launch command with the following:
powershell -ExecutionPolicy Bypass -File ..\pre-launch.ps1Replace the post-exit command with the following:
powershell -ExecutionPolicy Bypass -File ..\pre-launch.ps1Not fully tested on macOS!
Open MultiMC
Right-click on Fabulously Optimized
Click on the Instance Folder button
Right-click inside of the folder
Click on Open in Terminal
On macOS follow instructions to get the Terminal there
Install
jq, which will automatically adapt the script to your Minecraft versionRun the following commands to download the scripts that will disable the mods:
curl -Os 'https://raw.githubusercontent.com/Fabulously-Optimized/fabulously-optimized/main/Packwiz/pre-launch.sh' | curl -Os 'https://raw.githubusercontent.com/Fabulously-Optimized/fabulously-optimized/main/Packwiz/post-exit.sh' && chmod +x pre-launch.sh post-exit.shThis should download two files:
pre-launch.ps1andpost-exit.ps1Open
pre-launch.ps1in a text editor. You should find a list of mods starting on line 6Copy the name of the mod you want to disable
Paste the name of the mod in the line you found in step 8
Disable more mods by adding them under line 6 with the same format
If you leave a line empty, delete the corresponding one starting on line 28
If you need to disable more than 6 mods, add lines both under
mod5=and$mod5.jar\Go back to MultiMC
Click on Fabulously Optimized
Click on Edit Instance
Replace the pre-launch command with the following:
../pre-launch.ps1Replace the post-exit command with the following:
../pre-launch.ps1Last updated