I want the game as the developper wanted it to be, with censor.nudity = false by default, and not with steam censor bullsh*t.
So I'm looking for a way to set it at false by default on my server.I know it's possible.
If you guys are unconfortable with seing a dick start by asking you the good question before asking others.
Code:
PLUGIN.Title = "RustTweaks"
PLUGIN.Description = "Nudity On, Grass Off, Alpha Banner Off"
PLUGIN.Author = "Gliktch"
function PLUGIN:OnUserConnect( netuser )
rust.RunClientCommand(netuser, "grass.on false") -- Slow fucking grass Off
rust.RunClientCommand(netuser, "censor.nudity false ") -- Nudity On
rust.RunClientCommand(netuser, "gui.hide_branding") -- Hide Rust.Alpha banner
end
That's how I handle it on my Oxide server, not sure about Rust++ as it takes enough of my time keeping up with work+life+Lua code, but it shouldn't be difficult to work out, you only need to find the one function to run client-side commands with Rust++.
Good luck with your server :)