Posted December 19, 2021 by Zarlin
#mods #changelog
It is now possible to load multiple mods at the same time!
Loading multiple mods has the following behavior:
Mods are defined in the ServerSettings.json
in your Saved Games\Liero3D folder. From previous versions, this file contains a modName
field. This can be replaced with the following data structure:
"mods":
[
{
"name":"liero",
"enabled":true,
"assetsOnly": false
}
]
The fields work as follows:
name
is the folder name of the mod, within the assets\mods
folder in the Liero3D install location.enabled
allows toggling a mod on or off without having to add/remove it each time.assetsOnly
indicates that only assets should be loaded from the mod, and that weapons should be ignored.Change log for version 0.1.6: