It appears that the score is being stored in an unsigned way, so that it doesn't properly handle negative scores.
I have a customs match here: c5013df9-fc5f-42e5-834e-1fec44dd6d0a
It's a game where I was just messing around by myself in customs, attempting some jumps and such and ended up committing suicide a few times.
Here are the Team Stats from that game:
I mess around like this all of the time, both by myself and with my friends. It would be great to be able to get back our negative scores, preferably without having to infer an integer sign and size.
Thanks!
I have a customs match here: c5013df9-fc5f-42e5-834e-1fec44dd6d0a
It's a game where I was just messing around by myself in customs, attempting some jumps and such and ended up committing suicide a few times.
Here are the Team Stats from that game:
Based upon the value, it appears that my few suicides wrapped back around to the upper end of a 4 byte unsigned int.Quote:"TeamStats": [
{
"TeamId": 0,
"Score": 4294967292,
"Rank": 1,
"RoundStats": []
}
]
I mess around like this all of the time, both by myself and with my friends. It would be great to be able to get back our negative scores, preferably without having to infer an integer sign and size.
Thanks!