Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Server detects message flooding during VOG when tabbed out of game window #1108

Open
connorhsm opened this issue Jul 15, 2024 · 1 comment
Open

Comments

@connorhsm
Copy link

A common case I have when running a client in VOG, not full screen, is to tab out and view another window, usually on a separate monitor.

In this instance, VOG spams a VOGM message to move in the direction you moved the mouse until you return to the window. (maybe this is the real bug here?)

The localhost server detects this as message flooding and reports: Player 3 (email) marked as disconnected (Message flooding detected).

Could message flooding detection be toggle-able or alternatively VOG behaviour improved?

@Kaden56
Copy link

Kaden56 commented Aug 25, 2024

Screenshot (943)
You can turn it off. Go into the server.cpp file and look up the words "maxMessageRate". There should be two of them, the first one should be 40 and the second should be 80. I just changed them to 10000, and then I recompile the server with
"sh ./serverPullAndBuildLinux.sh" and now the server doesn't detect message flooding.

The way it works is: theres a 5 second timer that the server plays, and if you do more than 40 actions, or 80 walking actions within the 5 second timer then it detects it as message flooding, But boosting the actions up to 10000 means its practically impossible to time out since you won't be able to do 10000 messages in 5 seconds.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants