Jump to content

Recommended Posts

I was wondering if it was possible to use private mods on my dedicated server?

I created a mod that I wish to keep private for my server only, is there any way I could use this mod without having to upload it to the Steam workshop?

Link to comment
Share on other sites

If you have direct access to the server's mod folder (e.g. when running it from your computer), you can just copy the mod in there (and enable it in modoverrides.lua). Note that if it's all_clients_require_mod this might not work, as all clients need to have the same version of the mod.

Link to comment
Share on other sites

You can split YOUR mod into two mods: 1) private server mod 2) public all_clients_require mod.

1) Contains all server logic. As Muche said, you should put it in custom folder, e.g. MyPrivateMod. And in modoverrides add the line MyPrivateMod = { enabled = true, },

2) Contains client side art, sounds, interface, input stuff. If you don't have any client side stuff in your mod, you don't need this submod (part of your main mod).

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

Please be aware that the content of this thread may be outdated and no longer applicable.

×
  • Create New...