In my application my high score submitted but when i show my leaderborde "No Score" will be displayed.am i doing anything wrong.my code is below.
function requestCallback( event )
if event.type == "loadScores" then
if event.localPlayerScore then
native.showAlert( "Success! loading score", "", { "OK" } )
userRank = event.localPlayerScore.rank
userScore = event.localPlayerScore.value
else
userRank = "Not ranked"
userScore = "No high score"
end
elseif event.type == "setHighScore" then
local function alertCompletion()
gameNetwork.request(
"loadScores",
{
leaderboard={ category="com.**.*", playerScope="Global", timeScope="AllTime" },
listener=requestCallback
}
) end
native.showAlert( "High Score Reported!", "", { "OK" }, alertCompletion )
elseif event.type == "loadAchievements" then
userAchievements = event.data
end end
function onSubmitScore( numValue )
score=tonumber(numValue)
print("high score subitted"..score)
if loggedIntoGC then gameNetwork.request( "setHighScore", { localPlayerScore={ category="com.***.*", value=score }, listener=requestCallback } );
else
offlineAlert();
end
end