Hi Vivian,
You can't change the default player account details but you can add any custom data you want either to a player by passing up scriptData with the request itself and then inserting it into a custom runtime collection or by storing it on the player object with player scriptData or privateData. Which SDK are you using ?
Regards,
Liam
You can store your extra registration data within the same system player document. If, on successful registration, you set it to the player's scriptData (Spark.getPlayer().setScriptData("myKey", myValue), you'll then be able to retrieve it using Spark.getPlayer().getScriptData("myKey");.
Additionally, requests that retreive playerData (e.g. AccountDetailsRequest, GetMyTeamsRequest, etc) will return the player's scriptData also.
Regards,
Vinnie
Vivian Manders
Hi! I want to change the kinds of things that users need when they register, for example having a displayname and a username are unnecessary for me- but I also need to record things like age along with other bits of player data. I see this here https://docs.gamesparks.com/tutorials/social-authentication-and-player-profile/accessing-player-records.html But I don't find it necessary to have 6 different currencies and a lot of the other things. How do I go about deleting/changing these fields?