How to Keep Data between Rounds / get Current Round

I want to know at the beginning of the round which round this is. is there a function that gives me this back? my other idea was, i count up an int at the end of each round to read out this variable again at the beginning of the next round. The problem is obviously that the variable is reset between rounds.

2 Likes

Would like to know the same thing. Seems like it should be possible, considering IslandSettings allows us to do things at the end of the game based off values from each round (shortest round duration, player/team with most round wins, etc)

Found that round_settings_device class has:

RoundBeginEvent listenable(payload) Signaled when a game round starts.

Something useful in the payload maybe?

(Documentation is horror)

Have you tried making your own device to listen store that information and make use of what Patothief said.