So here is a table storing all of the user’s data:
main\_variables = {} main\_variables.highscore = 0 main\_variables.lastscore = 0 main\_variables.kills = 0 main\_variables.coin\_bank = 0 main\_variables.gem\_bank = 0 main\_variables.topkills = 0 main\_variables.adfree = false
It is loaded and saved into a json table:
loadsave.saveTable( main\_variables, "main\_variables.json" )
using Rob MIracle’s code:
https://github.com/robmiracle/Simple-Table-Load-Save-Functions-for-Corona-SDK
How can I implement this into PlayFab?