How To Install Mods On Your Avorion Server
Adding mods to Avorion is a great way to mix-up the gameplay and try new things, whether it’s a simple quality-of-life mod or a total overhaul, there’ll likely be something that’s perfect for you.
This guide will cover where to find and how to install mods on your Avorion server.
How To Get Your Workshop Mod IDs
Section titled “How To Get Your Workshop Mod IDs”You will need to know how to get a Workshop ID for each mod you want to install. You can view all the Avorion mods here
Once you find the mod you want you need to copy the URL. Let’s use this URL for example: https://steamcommunity.com/sharedfiles/filedetails/?id=1819452708
In this example the Workshop ID is 1819452708
.
Installing Mods On Your Avorion Server
Section titled “Installing Mods On Your Avorion Server”Avorion mods are downloaded from the Steam Workshop, after you’ve located your desired mods as shown above, and if required their listed dependencies, follow the steps below to retrieve the necessary Workshop ID’s to install them on your server.
-
Access the Game Host Bros Game Panel and
Stop
your Avorion Server. -
Go to
Management > File Manager
. -
Navigate to
/galaxy/Avorion/
and open a file namedmodconfig.lua
.- Here is an example of what this will look like without any mods:
modconfig.lua modLocation = ""forceEnabling = falsemods ={{workshopid = ""},{workshopid = ""},}-- Mods allowed to run on the client, for example UI mods.allowed ={{id = ""},{id = ""},{id = ""},} -
Add the Workshop ID’s of your mods, following this example`:
modconfig.lua modLocation = ""forceEnabling = false-- Mods that are installed server-side.mods ={{workshopid = "1819452708"},{workshopid = "1751636748"},}-- List allowed Client-side mods here. This also uses Workshop ID's.allowed ={{id = ""},{id = ""},{id = ""},} -
Start your server.
Once your server starts the mods will automatically install, and players will automatically download these mods when connecting to your server.
We recommend installing a few mods at a time to make sure they all work as expected.
To install more mods simply create more lines of {workshopid = "1819452708"},
and replace the ID with the mod you want to install.