RocketRP 1.2.15
dotnet add package RocketRP --version 1.2.15
NuGet\Install-Package RocketRP -Version 1.2.15
<PackageReference Include="RocketRP" Version="1.2.15" />
<PackageVersion Include="RocketRP" Version="1.2.15" />
<PackageReference Include="RocketRP" />
paket add RocketRP --version 1.2.15
#r "nuget: RocketRP, 1.2.15"
#:package RocketRP@1.2.15
#addin nuget:?package=RocketRP&version=1.2.15
#tool nuget:?package=RocketRP&version=1.2.15
RocketRP
A Rocket League Replay parser written in C#. Replay files are converted to an object which can be exported as JSON.
RocketRP can also convert the object or generated JSON file back into a replay file. This functionality hasn't been extensively tested and might not always work.
Supports all Rocket League versions up to at least v2.70 (2026-06-10). Newer versions will likely also work because the replay format doesn't change often. RocketRP successfully parses all my 900+ replays dating back to early 2016. If you find a replay that fails to get parsed, please create an issue so I can look into fixing it.
RocketRP can also be used to convert custom training files to and from objects and JSON.
Usage
Replays
You can parse or write a replay file by calling:
Replay replay = Replay.Deserialize(replayPath, parseNetstream, enforceCRC);
replay.Serialize(outputFilePath);
To convert to or from JSON you can do:
ReplayJsonSerializer serializer = new ReplayJsonSerializer();
string jsonData = serializer.Serialize(replay, prettyPrint);
Replay replay = serializer.Deserialize(jsonData);
Trainings
You can parse or write a replay file by calling:
SaveData<SaveData_GameEditor_Training_TA> training = SaveData<SaveData_GameEditor_Training_TA>.Deserialize(trainingPath, true, enforceCRC);
training.Serialize(outputFilePath);
To convert to or from JSON you can do:
SaveDataJsonSerializer serializer = new SaveDataJsonSerializer();
string jsonData = serializer.Serialize(training, prettyPrint);
SaveData<SaveData_GameEditor_Training_TA> training = serializer.Deserialize<SaveData_GameEditor_Training_TA>(jsonData);
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net10.0
- System.Text.Encoding.CodePages (>= 8.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.2.15 | 36 | 6/10/2026 |
| 1.2.14 | 124 | 4/28/2026 |
| 1.2.13 | 140 | 3/11/2026 |
| 1.2.12 | 139 | 1/27/2026 |
| 1.2.11 | 474 | 12/10/2025 |
| 1.2.9 | 232 | 11/5/2025 |
| 1.2.8 | 363 | 9/18/2025 |
| 1.2.7 | 155 | 8/22/2025 |
| 1.2.6 | 200 | 8/11/2025 |
| 1.2.5 | 187 | 7/31/2025 |
| 1.2.4 | 213 | 7/2/2025 |
| 1.2.3 | 201 | 6/30/2025 |
| 1.1.12 | 178 | 5/3/2025 |
| 1.1.11 | 164 | 3/15/2025 |
| 1.1.10 | 146 | 3/15/2025 |
| 1.1.9 | 212 | 1/1/2025 |
| 1.1.8 | 191 | 1/1/2025 |
| 1.1.7 | 201 | 12/11/2024 |
| 1.1.6 | 183 | 12/5/2024 |