-
Notifications
You must be signed in to change notification settings - Fork 3
Managing mods
Mods are the core feature of any modpack, and like any other Minecraft launcher or modpack manager, Pax allows you to install and uninstall mods.
Installing and uninstalling is simple.
-
To install a mod, use the
./pax add <name>
command.- This will search Curseforge for your mod with the given name and install it.
- Installing local mods directly from
*.jar
files is currently unsupported.
-
To remove an installed mod, use the
./pax remove <name>
command.- This will search for an installed mod with the given name and uninstall it.
In order to control which version of the mod is installed by Pax, you can use version strategies.
If you "add" a mod, their
.jar
file isn't directly downloaded - instead, the mod's Curseforge project & file id is written to themanifest.json
file in yourmodpack/
folder. The.jar
files are only downloaded before the modpack is started for the first time. Don't worry: That's exactly what Curseforge expects when you upload a modpack, and launchers with support for importing.zip
files can import your modpack easily.
-
In order to list currently installed mods, use the
./pax ls
command.
Installed mods are displayed with an •
icon, an ↑
icon, the name of the mod and a link to the currently installed version.
The icons in front of the name have a special meaning: The •
indicates how compatible the installed mod is with the modpack, and the ↑
icon indicates if the mod is up to date.
Icon | Color | Meaning | Example |
---|---|---|---|
• |
Green | The mod is compatible with the modpack's minecraft version. | a mod for MC version 1.16.5 in a modpack for MC version 1.16.5
|
• |
Yellow | The mod's version only matches the major modpack version. | a mod for MC version 1.16.4 in a modpack for MC version 1.16.1
|
• |
Red | The mod is incompatible with the modpack's minecraft version. | a mod for MC version 1.14.1 in a modpack for MC version 1.12.2
|
The compability icon shows you if there are any incompatible mods that are 100% going to crash, and if there are any mods where issues may arise due to version incompability.
Icon | Color | Meaning | Example |
---|---|---|---|
↑ |
Green | No updates available. | a mod being the latest version |
↑ |
Yellow | Your installed version is newer than the recommended version. | mod version 1.2.3 is installed, but mod version 1.1.1 is recommended for MC 1.16.4
|
↑ |
Red | There is a newer version available. | mod version 2.3.4 is installed, but 2.3.5 is available |
The freshness icon allows you to quickly see if mods are outdated and newer versions are available. Keeping up-to-date is important in preventing bugs with your modpack.
If you want to retrieve newer versions for your mod, you can simply update either one specific mod or all installed mods at once.
-
For updating one specific installed mod, use
./pax update <name>
. -
For updating ALL installed mods, use
./pax upgrade
.