Just made a server recently, wondering if there's anything I can do to make the server default to nudity being on. I know you can put in the 'censor.nudity false', but every player would have to do it. Any way for that to be a default setting on the server?
Many thanks in advance.
Anyone know?
This is per client setting, not server. It's like grass, you can't force it on.
You can do this with mods such as Rust Essentials.
[QUOTE=zloj;44015565]This is per client setting, not server. It's like grass, you can't force it on.[/QUOTE]
Yes you can. With oxide there's many plugins for hiding the branding, grass and nudity server wide.
[code]PLUGIN.Title = "RustTweaks"
PLUGIN.Description = "Nudity On, Grass Off, Alpha Banner Off, Clouds Off"
PLUGIN.Author = "Gliktch"
function PLUGIN:OnUserConnect( netuser )
rust.RunClientCommand(netuser, "censor.nudity false")
rust.RunClientCommand(netuser, "grass.on false")
rust.RunClientCommand(netuser, "gui.hide_branding")
rust.RunClientCommand(netuser, "env.clouds false")
end[/code]
(Clouds and grass off because on my machine they're the difference between 2-3FPS and 15-30, and nudity/banner switched on/off as those settings aid immersion)
If you want to put it into an Oxide plugin, you can save the above code into a "tweaks.lua" file and upload it into your server's /save/oxide/plugins folder. On next reboot it'll work automatically for every user when they log in :)
Sorry, you need to Log In to post a reply to this thread.