#How can I make pages that show achievements (multiplayer game)
1 messages · Page 1 of 1 (latest)
you make cloud List<string> variable
in each string you write a name of the achievement and add something like ", unlocked"/", locked"
when you scroll the achievements it checks the list element that in [page number] position, you split that element by using "string split" with separator as ", ", first part will be the achievement name, other will show if its unlocked or no (check it with "equals" chip and compare it to "unlocked"
to unlock an achievement you just set the element in the list that coresponds to your achievement to "[name of achievement], unlocked"