Rank System

I’m making a Map with the Rank System added and I was wonder how I could make it to where it saves the players ranks for when they come back to play the map again, their rank will show to what they left at. If there is any way to make this work, please help me!

What’s “The Rank System” ?

Sorry did i say it wrong? I meant the " Ranked System "

1 Like

You should checkout Weak Maps and Persistence:

Checkout this Doc for more info

Using Persistable Data in Verse | Unreal Editor for Fortnite Documentation | Epic Developer Community

Still don’t know what you’re talking about

I think i do, you would want to create a blueprint within the content browser wherever you store things and create a special save, then create a variable in the save itself and make it an array (this allows players who just join create their save data, just use a add modifier to the array so the array starts collecting all their data). you would then make it so when new players join the ranked system it starts collecting points (which would simply be a a variable struct which would contain at least one variable that is an integer/float. You then proceed to calculate the amount of points collected each match based off their performance eg kills, skill, and anything else. then take the points and add them to the float/integer, save it and then apply in the adjusted widget forward. If you want a tutorial let me know.