NewConn.TotalDistance = FileInfo.GetUserDistance(NCN.UName);
------------------------------------------------------------------
// Detailed car information packet (max 8 per packet)
private void MCI_CarInformation(Packets.IS_MCI MCI)
{
try
{
for (int i = 0; i < Players.Count; i++)
{
decimal SpeedMS = (decimal)(((MCI.Info[i].Speed / 32768f) * 100f) / 2);
Connections[GetConnIdx(Players[GetPlyIdx(MCI.Info[i].PLID)].UniqueID)].TotalDistance += Convert.ToInt32(SpeedMS);
decimal Speed = (decimal)((MCI.Info[i].Speed * (100f / 32768f)) * 3.6f);
decimal ConvSpeed = (decimal)(Speed * 25 / 1000);
Players[GetPlyIdx(MCI.Info[i].PLID)].Payout += ConvSpeed;
}
Hm... this is all what i have from Distance.....i will have a button to who can see i was driven 199.6 KM or so
![](/static/smilies/scratchchin.gif)