Small changes
This commit is contained in:
@ -395,7 +395,7 @@ namespace CoopClient.Entities.Player
|
||||
|
||||
if (updatePosition)
|
||||
{
|
||||
float lerpValue = ((int)((Latency * 1000 / 2) + Main.MainNetworking.Latency * 1000 / 2)) * 2 / 50000f;
|
||||
float lerpValue = ((int)((Latency * 1000 / 2) + (Main.MainNetworking.Latency * 1000 / 2))) * 2 / 50000f;
|
||||
|
||||
Vector2 biDimensionalPos = Vector2.Lerp(new Vector2(Character.Position.X, Character.Position.Y), new Vector2(Position.X + (Velocity.X / 5), Position.Y + (Velocity.Y / 5)), lerpValue);
|
||||
float zPos = Util.Lerp(Character.Position.Z, Position.Z, 0.1f);
|
||||
|
@ -279,9 +279,9 @@ namespace CoopClient.Entities.Player
|
||||
}
|
||||
|
||||
#region -- PEDALING --
|
||||
/*
|
||||
* Thanks to @oldnapalm.
|
||||
*/
|
||||
/*
|
||||
* Thanks to @oldnapalm.
|
||||
*/
|
||||
|
||||
private string PedalingAnimDict()
|
||||
{
|
||||
|
@ -369,12 +369,12 @@ namespace CoopClient
|
||||
DebugSyncPed = Players[0];
|
||||
}
|
||||
|
||||
if ((Util.GetTickCount64() - ArtificialLagCounter) < 274)
|
||||
if ((Util.GetTickCount64() - ArtificialLagCounter) < 231)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
bool fullSync = (Util.GetTickCount64() - LastFullDebugSync) > 500;
|
||||
bool fullSync = (Util.GetTickCount64() - LastFullDebugSync) > 39;
|
||||
|
||||
if (fullSync)
|
||||
{
|
||||
|
@ -16,7 +16,7 @@
|
||||
/// <summary>
|
||||
/// Don't use it!
|
||||
/// </summary>
|
||||
public string MasterServer { get; set; } = "https://ragecoop.online/servers";
|
||||
public string MasterServer { get; set; } = "https://ragecoop.online/gtav/servers";
|
||||
/// <summary>
|
||||
/// Don't use it!
|
||||
/// </summary>
|
||||
|
Reference in New Issue
Block a user