Closed 0-BuTaJIuK-0 closed 1 year ago
Without fake clients, everything shows
To fake online players count, you have to authenticate players, whether by using tiny client connection or implementing authentication process in the tiny server yourself.
And then what is responsible for _DECL_CONST SERVER_NUM_FAKE_CLIENTS = 8;
This is only valid when you set CONFIG_HANDLE_QUERY_BY_STEAM = 0
. The tiny server will build A2S response itself instead of letting steamclient library do the job. And this value will only affect player number outside of the internet tab of the browser. When client requests server lists(which will be listed in the Internet tab of the browser) from GC, GC responses with the player count which is counted by GC itself(through player app ticket authentication), not the one that server reported to it.
Senk Interestingly, it is displayed normally in favorites
And still, I didn't quite understand what the parameter is responsible for CONFIG_HANDLE_QUERY_BY_STEAM )))))
I understood correctly. It is not possible to emulate players on the "Internet". Just somehow log in from your accounts. And if you create 1 server (with your clients) and somehow redirect traffic to other servers?
Do they really have so many accounts? 32 in each)
Here is something similar to the truth, but each has 4 users with the same name Но тут берётся онлайн с одного сервера и дублируется на разные.
And still, I didn't quite understand what the parameter is responsible for CONFIG_HANDLE_QUERY_BY_STEAM )))))
Look at the code where it's referenced and you'll understand.
It is not possible to emulate players on the "Internet"
Not true, it's possible. Those fake servers are implemented in javascript with the help of this library which contains all the interfaces you need to implementing your own fake servers like them. And you can also use this tiny server and use that library to implement authentication.
Thank you for answering in detail)