Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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
share|improve this question
When you say "No Score" is this from the GameCenter app or from your code? When you load the leaderboard above are you getting values back? – Rob Miracle Jan 23 at 22:38

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.