A libary to read Fortnite .replay files.
Inspired by https://github.com/fredimachado/FortniteReplayReader by Fredi Machado. Made with the help of his video https://youtu.be/m2Twu9k5VQQ. Thx!
Come to talk to us here: https://discord.gg/FrkWggw
You can download the latest build in the Releases and add it to your project.
Some basic examples to show the usage of FortniteReplayReader
FortniteReplayReader replay = new FortniteReplayReader(new File("UnsavedReplay-2018.12.23-15.13.28.replay"));
System.out.println("Replay Name: " + replay.getReplayInfo().getFriendlyName());
System.out.println("Your Position: " + replay.getReplayInfo().getPosition() + " / " + replay.getReplayInfo().getTotalPlayers());Result:
Replay Name: Ungespeicherte Wiederholung
Your Position: 5 / 99
FortniteReplayReader replay = new FortniteReplayReader(new File("UnsavedReplay-2018.12.23-15.13.28.replay"));
for(Elimination elimination : replay.getEliminations()) {
System.out.println(elimination.getKiller() + " killed " + elimination.getVictim());
}Result:
hypeAlex_ killed MEGA DOBRY 123
xd CatsPower killed Domix121
The_Igel killed paciek1000
Unstoppable_Frkn killed PartyBG
[...]
- GunTypes
- Knocked?
- and much more ...