Hi,
I have a set of 3 leaderboards (one for each difficulty level). One of these are set as default in Itunes.
After submitting a score, I want to set the default leaderbord for this particular player, so that when the user clicks a button, this leaderboard will show and not the default one set in Itunes.
This can be done outside of Corona. Its a parameter called setDefaultLeaderboard which can be passed when setting the high score. I’ve tried doing this in Corona, but it doesn’t work:
gameNetwork.request(“setHighScore”, { localPlayerScore = { category=“easyboard”, value=score, setDefaultLeaderboard = true}});
Any ideas on how to do this with Corona?
I would also like to be able to have a button which shows all leaderboards in my set directly instead of a chosen one. Now the user have to press “Back” first to see all leaderboards together with the “like” stars.