Hi,
I’m trying to retrieve the current player high score through Android google play leaderboard (see code below). However, im currently only able to retrieve the ‘global’ high score of all players (i.e. the highest score recorded in google game service) and not the score for the current logged in player.
local function loadScoreCallback (i\_event) print ("leaderBoard Score: ", i\_event.data[1].value) -- This give high score of all player (and not the current login user) end .... gameNetwork.request( "loadScores",{ leaderboard = { category = "CgkI8-qu8JUSEAIBBB", playerScope = "Global", -- Global, FriendsOnly timeScope = "AllTime", -- AllTime, Week, Today range = { 1,1 }, -- Retrieve only one player (the current one) playerCentered = true --This should bring only the current login user leader board }, listener = loadScoreCallback })
Thanks
Yuval