A
Aidan Perry
Lead Engineer @ Packetware
How to create a community Rust server while using Oxide/UMod
After installing oxide there will be a configuration oxide.config.json generated in the directory below.
/oxide/
{
"Options": {
"Modded": false,
"PluginWatchers": false,
"DefaultGroups": {
"Players": "default",
"Administrators": "admin"
},
"WebRequestIP": "0.0.0.0"
},
"OxideConsole": {
"Enabled": true,
"MinimalistMode": true,
"ShowStatusBar": true
},
"OxideRcon": {
"Enabled": false,
"Port": 25580,
"Password": "",
"ChatPrefix": "[Server Console]"
}
}
You simply need to change the modded config variable to false
"Modded": false,
Now when you restart the server it should be displayed in the community section instead of modded.
