Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by EvanCheddar · Nov 29, 2018 at 12:05 AM · mobilescoreleaderboardgame center

Social.ReportScore not showing up on Leaderboard

Hello unity forums. I can't seem to get my score to show up on my game center leaderboard. The leaderboard opens but the score value is constantly "0". I think I may be doing something wrong in my code:

 public bool loginSuccessful;
 
     public int finalscore;
 
     string leaderboardID = "Faxanadu_NES_1987";
     
 
     void Start()
     {
 
         AuthenticateUser ();
     }
 
 
     void Update()
     {
         finalscore = TextScore.scoreValue; //(this is the script that has my score from the game saved)//
 
     }
     void AuthenticateUser()
 
     {
 
         Social.localUser.Authenticate((bool success) => {
 
             if(success)
 
             {
 
                 loginSuccessful = true;
 
                 Debug.Log("success");
 
             }
 
             else
 
             {
 
                 Debug.Log("unsuccessful");
 
             }
 
             // handle success or failure
 
         });
 
     }
 
 
     public void PostScoreOnLeaderBoard(int finalscore)
 
     {
 
         #if !UNITY_EDITOR
 
         if(loginSuccessful)
 
         {
 
         Social.ReportScore(finalscore, leaderboardID, (bool success) => {
 
         if(success)
 
         Debug.Log("Successfully uploaded");
 
         // handle success or failure
 
         });
 
         }
 
         else
 
         {
 
         Social.localUser.Authenticate((bool success) => {
 
         if(success)
 
         {
 
         loginSuccessful = true;
 
         Social.ReportScore(finalscore ,leaderboardID, (bool successful) => {
 
         // handle success or failure
 
         });
 
         }
 
         else
 
         {
 
         Debug.Log("unsuccessful");
 
         }
 
         // handle success or failure
 
         });
 
         }
 
         #endif
 
     
 
     Social.ShowLeaderboardUI();
 }
 
 }
Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

2 Replies

· Add your reply
  • Sort: 
avatar image
0

Answer by derekseibel · Aug 11, 2020 at 10:17 AM

I know this is an old thread but it's appearing very high in the Google search results. I had a similar issue. My problem was that I'd configured my Game Center board to have a Sort Order of "Low to High". My initial test score I submitted was "0". And then I tried submitting a "1", expecting the leaderboard to update to "1". It never did, since I told Game Center "0" was better than "1" and it was dropping my score. Set the leaderboard to be "High to Low" and everything started working as expected. Hope this helps someone.

Comment
Add comment · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image
0

Answer by DialBlitzness · Aug 10, 2020 at 07:08 AM

Hello !

My theory is that your scene loops back to a finalscore of zero, because you set your "finalscore = TextScore.scoreValue;" in the Update () method, which is called constantly, even though there is no backup yet.

Try to initiate the finalscore once in the Start () method, and update it only after the new save.

Comment
Add comment · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

141 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Facebook leaderboard issue 0 Answers

How to make a score / kill counter script for and then add it to a leaderboard on a website 1 Answer

Leaderboard Help 0 Answers

ILeaderboard on iOS is not working? 0 Answers

Why won't the Score reset? 2 Answers


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges