How to Install OpenMod Plugins on Your Unturned Server
OpenMod plugins add new functionality to your server and can be installed, updated, or removed at runtime without restarting. Plugins are available on the OpenMod plugins page and on NuGet.
Before you start: Install OpenMod on your server first.
Install a plugin from NuGet
Run the following command in the server console, replacing <package-id> with the plugin's NuGet package ID:
openmod install <package-id>
Example:
openmod install Kr4ken.NewEssentials
To install a specific version:
openmod install <package-id>@<version>
To include pre-release versions, add -Pre:
openmod install <package-id> -Pre
To update a plugin, run openmod install <package-id> again.
Install a plugin manually
- Download the plugin
.dllfile and any required library files. - Upload them to the
openmod/pluginsfolder on your server via FTP or File Manager. - You can also install plugin dependencies with
openmod install <package-id>. - To update, replace the
.dllfile with the newer version.
Apply changes
After installing, updating, or removing any plugin, run:
openmod reload
Remove a plugin
For plugins installed via NuGet:
openmod remove <package-id>
For manually installed plugins, delete the .dll file from openmod/plugins, then run openmod reload.