-
Notifications
You must be signed in to change notification settings - Fork 126
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
"cl_extrapolate 1" makes ping showed ingame dramatically lower #247
Comments
The displayed ping value is affected by cl_extrapolateTime value |
I believe you mean cl_extrapolationTime https://github.com/Warsow/qfusion/blob/ad67e05a8c8d8724c2c5c1de481abe7aba933fb6/source/client/cl_main.c#L2082 . Just have checked it by myself, you're right, cl_extrapolationTime 0 makes the ping the same as for cl_extrapolate 0. |
As I can see, client ping gets calculated by the server here: |
The ping shown in the scoreboards is not the real ping time between the client and the server. It's the latency as it's displayed in the game. When you reduce the time it takes to display events the ping in the scoreboard is reduced too. Remember that Q2 engine kept a buffer of 2 snapshots before starting drawing (so there could exist interpolation). This added a latency of one full snapshot that wasn't real ping. Extrapolation gets rid of such built in latency. |
Cl_extrapolate 1 is default value, it is used to toggle prediction model.
With "1" ping is showed for 15-20ms lower than the real one, it can be checked by pressing TAB while connected to any internet server.
So it allows to mislead the opponent with ping showed ingame during the cups.
My suggestion is that it needs to be fixed, so with any value of cl_extrapolate there will be only one value of the ping showed ingame - the most real and accurate, as UI Server browser does so.
The text was updated successfully, but these errors were encountered: