This repository contains two CSV files which are the database export of all the players' stats history on official Invasion and WW2 DLCs servers, as saved by the now-defunct RWRS (rwrstats.com) project. Exports were made the day RWRS shut down (December 12, 2025).
Stats history was only recorded for the 5000 most experienced players, and had a data retention policy of one year per RWR account, so not everyone will be present in these files. Also, no data were saved if stats didn't change.
Both files are structured as follows:
- Column separator:
, - Enclosure:
" - Escape char:
" - Line terminator:
\n - Columns (in that order):
username(string) Name of the RWR account as shown in-gamedate(string) ISO 8601 date when stats were savedxp(int) Experiencekills(int) Number of soldiers killeddeaths(int) Number of times diedtime_played(int) Number of seconds playedlongest_kill_streak(int) Highest number of killed soldiers in a row without dyingtargets_destroyed(int) Number of special targets destroyed (e.g radar towers)vehicles_destroyed(int) Number of vehicles destroyedsoldiers_healed(int) Number of soldiers healedteamkills(int) Number of friendly soldiers killeddistance_moved(float) Number of kilometers ranshots_fired(int) Number of shots firedthrowables_thrown(int) Number of throwables (e.g grenades) thrown
These stats must be computed by yourself (they weren't persisted in database):
- K/D ratio:
kills / deaths - Score:
kills - deaths
See also: rwrtrack-data