Skip to content
This repository was archived by the owner on Nov 9, 2021. It is now read-only.

EweLo/FortniteReplayReader

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

FortniteReplayReader (WIP)

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

Installation

You can download the latest build in the Releases and add it to your project.

Usage

Some basic examples to show the usage of FortniteReplayReader

Get some information about the replay

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

Get all Eliminations

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
[...]

To-Do

  • GunTypes
  • Knocked?
  • and much more ...

About

A libary to read Fortnite .replay files.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 2

  •  
  •  

Languages