Hi there! I've just setup my own Vanilla Rust Server on a very powerful VPS machine and I have noticed that players including me were getting kicked for some "Tick" error.
What I would like to know, what is the current tick rate of the server and what should I set it to?
Recommended tick rate?
Discussion in 'Rust Discussion' started by ItsAres, Oct 7, 2017.
-
Keep it as default as any alteration can severely impact server performance. The error detailed above is typically due to limited resources on your machine, in this case, being a VPS. It is highly recommended against using a VPS as Rust naturally consumes a lot of CPU.
Do you mind giving me your vps specs? -
It’s a powerful VPS.. shouldn’t be a problem..
It’s an E5-2630v4 four core processor
12 GB of ram
100mbps line
SSD disk
A guy from the official support said that I should be setting the max flood higher.. so can I enter it in the startup file like: +server.maxflood 2000 for example or must I enter it through the console and then save the configuration? -
-
Idk how much.. the usage I see in my performance monitor is not high really low below 20% when running the server..
I'm running worldsize 3000.
(Please look at my previous post I have edited it while you were already replying) -
Code:+server.tickrate 60
Code:maxtickspersecond 60
-
-
-
:start
cd steam
steamcmd.exe +runscript ../update_script.txt
steamcmd.exe +runscript ../update_script.txt
cd ..
cd rustds
RustDedicated.exe -batchmode +server.hostname "My Server" +server.port 28015 +server.identity "My Identity" +server.seed 123456 +server.worldsize 3000 +server.maxplayers 100 +server.saveinterval 600 -logFile "output.txt" -autoupdate
cd ../
goto start -
Code:
echo off :startcd steam steamcmd.exe +runscript ../update_script.txt steamcmd.exe +runscript ../update_script.txt cd ..cd rustds RustDedicated.exe -batchmode +server.hostname "My Server" +server.port 28015 +server.identity "My Identity" +server.seed 123456 +server.worldsize 3000 +server.maxplayers 100 +server.saveinterval 600 +server.maxflood 1000 +server.tickrate 60 -logFile "output.txt" -autoupdate cd ../goto start
-
I have tried putting +server.maxflood in the startup batch but in the log it says it doesn't recognize the command..
-
-
-
-
-
One more thing, I've read online that the setting fps.limit -1 would also help in performance if I have many people online. Once again, how exactly is this command being executed? By adding a line: +fps.limit -1 in the startup batch or entering it in the server console like: fps.limit -1 and then save the config with: writecfg ? Which one is right? -