Comments

Log in with itch.io to leave a comment.

Viewing most recent comments 1 to 40 of 205 · Next page · Last page

You saved my Jam, for Real!! <3

is there a way to implement this in a game not using unity?

(2 edits)

Just want to report what I believe might be a bug:

I uploaded a score of around 11000 with the name "D" using one device, then, while testing something, I uninstalled my game and reinstalled it. Uploaded a new score of 13000 with the reinstalled app, and it added a new score to the list (I assume it has a new ID now that the game was reinstalled). So, I had two scores of "D" in my list, instead of the first one being overwritten. That was fair enough.

So, I come on here and edited the 11000 scorer's name to "B". When I clicked ok (the "check/tick" button), the 13000 score was edited too: the score was changed to 11000 (though the names remained as I put them). I ended up with two scores of 11000, with the names "B" and "D", even though I never edited the other one.

How come this happened? I assumed the ID would've changed if a new entry had been added instead of overwritten, after I reinstalled the game.

Is it possible to embed a full leaderboard into a webpage?

How do i reset the leaderboard ? if there is any option?

(+1)

Wow. Got it working instantly. Incredible work.

is there a way of autodeleting entries that haven't been updated in a while?

How to check for unique names to ensure there are no duplicates? Which function should I call?

hey, great Leaderboard man but everything works on the editor but not when i run it on real deveice ?

how do i get the lowest rank in my leaderboard so i can only load my scene if my score is greater the the lowest rank otherwise it bypasses it?

(+1)

Something along the lines of this...

void GetAllEntries() {
  Leaderboards.YourLeaderboard.GetEntries(
    isAscending: true,             
    callback: OnEntriesLoaded(is passed a list of "Entry")
    errorCallback: OnError(is passed a string with error)
  );
}
void OnEntriesLoaded(Entry[] entries) {
  if (yourScore > entries[0]) {
    LoadScene();
  }
}
void OnError(string error) {
  Debug.Log(error);
}
(+1)

How to use the IsMine() function to search for the Player's own score in the list? I get errors whenever I try to use it, saying "Entry does not contains a definition for IsMine".


I just want to be able to access the player's personal rank without any errors coming up. Once I've done that, I feel I can handle the rest from there with what I want to do (displaying the rank, etc).

Hey, could you show me how you're attempting to use the IsMine method?

(-1)

I followed this tutorial video to implement the scoreboard:

But I'm not displaying the scores, only loading the scoreboard, because I don't want my game to display them all, just the player's personal score. So, I haven't included the loops shown in the video, just the function, and an empty version of the "LeaderboardCreator.GetLeaderboard" condition.


At present, I just have the function showing the top three scores, for the sake of testing, but my next step is to access the player's personal score and display that (which I'll then use to get the scores ranked directly above and below it).


So far, the condition looks like this:

LeaderboardCreator.GetLeaderboard(publicLeaderboardKey, ((msg) =>

        {

            

            rank1text.text = "#" + msg[1].Rank.ToString();     //Set the highest displayed rank

            rank1nameText.text = msg[1].Username;       //Set the highest displayed rank's name

            rank1scoreText.text = msg[1].Score.ToString();       //Set the highest displayed rank's score

            rank2text.text = "#" + msg[2].Rank.ToString();     //Set the middle displayed rank

            rank2nameText.text = msg[2].Username;       //Set the middle displayed rank's name

            rank2scoreText.text = msg[2].Score.ToString();       //Set the middle displayed rank's score

            rank3text.text = "#" + msg[3].Rank.ToString();     //Set the lowest displayed rank

            rank3nameText.text = msg[3].Username;       //Set the lowest displayed rank's name

            rank3scoreText.text = msg[3].Score.ToString();       //Set the lowest displayed rank's score

            //bool isMine = msg.IsMine();

            //Debug.Log(msg.IsMine().Score);

            //Debug.Log(LeaderboardCreator.GetPersonalEntry(publicLeaderboardKey, Whatever goes in here));

        }));


You can see lines I've commented out. These were my attempts to use IsMine() and GetPersonalEntry, but every attempt gave me an error.

(2 edits)

Anyhow, I don't think it's the GetMine() method I need, it's the GetPersonalEntry() method. Took me a while, but I finally figured out how to use it.


Incidentally, is there a boolean I can call if the Leaderboard fails to load? I.e. if the player is offline. I just want to use it to display a message if the leaderboard fails to load (I see that the servers for it go down frequently as well).

Hey there, Silver Fang, every function has an optional callback which will return the error message whenever an error occurs, please see the documentation:

https://github.com/danqzq/unity-leaderboard-creator

I mean, to convert it into a boolean within my own script? So I can add something like:

if (loadFail == true)

    failMessage.SetActive(true);

Here's an example usage:

https://github.com/danqzq/unity-leaderboard-creator#displaying-entries-in-a-list

(+1)

I'm seeing that V2 will be replaced by V3 soon. If I were to download V2 and set it up in my game now, will I have to change everything when a V3 update is required?


Just figuring out if it's worth me practicing with V2 now, or just waiting for V3.

(+1)

Hey Silver Fang!

You could still use V2, the process to switch over to V3 will not be complicated

(+3)

I cant copy the public key for some reason does anyone have the same issue?

Deleted 79 days ago
(+3)

Same, it's been an issue for a little while, the browser makes that happen. The way around is to open the browser console with F12 and there, when you click, copy the key, you'll see it, and you can copy it from there. I hope it helps! Works for me perfectly :)

Thank you man , that helped a lot

glad to hear! 

(1 edit)

This will be fixed soon!

Edit: this has been resolved.

(2 edits) (+1)

what im doing is letting the user choose his name when the he opens the app, and the leaderboard updates after every game with the highscore. how can i make it so that the user cant choose a name that already exists in the leaderboard? For example lets say he decides on "Bot" and that name already is in the leaderboard, i want it to say "Username already exists choose another" or something.

UPDATE:

took a while but i fixed it!

Love this leaderboard thank you for your work!!

(1 edit) (+2)

I really like this tool and use it for everything but can you fix the issue of the server going offline frequently? cause I really wanna keep using this

Sorry, the servers experience crashes sometimes, but I am working on fixing this!

(+1)

The page here doesn't allow me to actually view or manage the leaderboard. I can use the leaderboard in the game, but when I come here to manage it, it says not found.

(+1)

Sorry, the servers experience crashes sometimes, which is probably why the leaderboards return a status of not found, but I am working on fixing this!

(+1)(-1)

HEY GUYS! What is the special price I need to pay to get the advanced functions? Thank you:D!

Advanced Leaderboards have been moved to Leaderboard Creator V3, now available in early access:

https://danqzq.itch.io/leaderboard-creator-v3

(+1)

I can't get the score to update, the username does update normally. Even if I hard code values like this:

public void UploadEntry(string username, int score) {            Leaderboards.FlappyBirdClone.UploadNewEntry("asdasd", 99, isSuccessful => { if (isSuccessful) { Debug.Log(score);
 GetLeaderboard(); } });
}

my username becomes asdasd but score does not become 99

Hey SurocIsMe!

Is the score over 99? It's important to mention that if the score is above 99, it won't be changed. However, this would work the other way around, if the "Ascending Order" toggle is turned on.

(+1)

Hey Daniel,

First, I want to thank you for this great tool.
Second, I added a leaderboard to one of my mobile games using this asset and I would like to to have access to the Advanced Leaderboard.
Would this possible now?

Thanks,
Omar

Me too! Above it says to pay the special price but I dont know what it isl...

Hey guys, sorry for the late response.

Advanced Leaderboards have been moved to Leaderboard Creator V3, now available in early access:

https://danqzq.itch.io/leaderboard-creator-v3

(+1)

When I try to load, it says failed to connect to server. Is this just me? Or is the server just down for a moment?

Never mind, it's back, guess it doesn't matter either way now!

well i have the same error. When i add existing leaderboard it adds empty board and when i click on manage it gives server errror.

Yeah this thing just keeps going down then back up intermittently. I hope this is just affecting me, but if not that’s unfortunate.

Sorry guys, the servers experience crashes sometimes.

(+1)

Hello, I really enjoy using your tool. I want to report that it doesn't allow me to upload scores any more. If I upload an entry (username + score), only the username gets uploaded and has a static variable score of 99 for some reason.

(+1)

Hey SurocIsMe!

Please familiarize yourself with how the leaderboard entries work:

https://github.com/danqzq/unity-leaderboard-creator?tab=readme-ov-file#uploading...

(+1)

Hi! i found it Great! , i can use in my comercial game?

Hello Shadownildo!

Yes you can!

(+1)

great tools. copy doesnot work and cant copy key but no problem i am smart.

Hey Santos!

Due to a new browser policy copying to clipboard became broken on some browsers and I am working on fixing it (there may not be a way to fix this 💀). As a temporary workaround, I made the keys appear on top of the Unity view, so you will be able to copy the keys from there for now. The keys are alternatively printed in the developer console, so you can copy them from there.

(+1)

i cant copy the keys ?

(+1)

Hey ip7_i!

Due to a new browser policy copying to clipboard became broken on some browsers and I am working on fixing it. As a temporary workaround, I made the keys appear on top of the Unity view, so you will be able to copy the keys from there for now. The keys are alternatively printed in the developer console, so you can copy them from there.

(+1)

Hi, is there a way to dynamically create a new leaderboard with code or do you have to use the tool?

(+1)

Hello snon200!

You may only create leaderboards manually through the tool.

(1 edit) (+1)

this tool helps my game to be better but my servers Suddenly disappeared in dashboard

(+1)

Hello BestStadio!

It it important that you save your leaderboards' secret keys because they are only stored in the browser's cache upon creation, and could be deleted when you erase your browser's data.

(1 edit) (+1)

Nice asset. Is there a self-hosted version of the score server side of this asset available? or are you only making it available as a Software-as-a-service API

(1 edit)

Hey geoffc!

For now, it's a SaaS API.

(+1)

Hello,

Is there a way to allow negative scores? When I try and pass through negative scores Unity gives me a console error. I have an idea for a work around on my end but was wondering if there's a spot in your scripts that I could tweak to allow for negative values....

Hey dambotron!

Unfortunately to your case, the score is and should be a positive number, but all you need to do on your end is offset the resulting scores by subtracting them.

Gotcha. Thanks! I am having another issue that the score always updates as 1, regardless of what I submit. I followed your video tutorial and don't seem to see any issues on my end. Any idea what might be happening here?

It might be because your leaderboard is set to sort in ascending order, meaning the lowest score will be saved if you submit a higher score.

(+1)

There are times when I play and I get this error "[LeaderboardCreator] Not Found" and if I have my leaderboard loaded, how can I fix that?

Hello SaraCastro132!

This is a global issue, and I assure you I am working on fixing this.

Okiiii
Thank you very much for creating this wonderful tool, I am sure you will solve them

And sometimes I having this other problem "

 Service Unavailable: <!DOCTYPE html>

<html>"

(+1)

Hello, i wanna ask is there's a way to has a function that can delete the user data from leaderboard itself instead of admin that need to do it 

Hey F-AR!

Please see the documentation guide here:

https://github.com/danqzq/unity-leaderboard-creator?tab=readme-ov-file#uploading...

(+1)

Hello, is there a way to check a player's ranking when they upload their score? Something that allows the player to understand if they are in the first place, the second ecc

Hey Costiklev!

Please see the documentation guide here:

https://github.com/danqzq/unity-leaderboard-creator?tab=readme-ov-file#display-e...

(+1)

This works for oculus?

Hey SaraCastro132!

Yes, it should work for all platforms!

Thanks it works

(+2)

awesome resource, used it in a recent jam game.

check it out https://colecantcode.itch.io/graveyard-gundown

(+2)

This is great when it works. In my previous games I never had problems but today when playing them or trying to implement the leaderboard into a new game, I noticed there is a major server delay and sometimes I get a Heroku error page in the console.


Is this a known issue and I should look for an alternative or is this just a temporary hiccup?


Thanks for such a great tool!

I report the same problem.  Service is not reliable

(+1)

I want to report that the servers were down today. I had to retry many times. Finally, I used the creator to see my leaderboards. That forced it to recover. Then my apps could communicate with it.

(+1)

Hey Galaware Consulting LLC!

Currently the servers are facing some hiccups that I'm working on fixing. Sorry for the inconveniences.

(1 edit) (+1)

Can I clear the records on the leaderboard without doing them one by one?

Hey ManamanTR!

This is something that's going to be implemented in the next update!

How are you doing it one by one?

(+1)

Just added this to my game, Awesome tool. I have added credits. :)

Monkeying Around

This is an awesome tool for games but for some reason im getting an error saying "Uploading entry data failed" and "[LeaderboardCreator] Not Found"

(1 edit)

Add your leaderboard to the "Leaderboards.cs". That was the problem for me. Check the documentation for any further detail.

first of all thank you so much for this amazing tool.

However, I'm getting a bug where unity just completely freezes and becomes unresponsive. It appears to only happen when I try to send / fetch data from the leaderboard. Any idea what could be happening? It could very well be something on my end, I just haven't been able to pinpoint the source. tysm

Hey colecantcode!

I am pretty sure you might be calling some function recursively by accident. Regardless, I can take a look at it if you provide your code to me via Discord (@danqzq).

Viewing most recent comments 1 to 40 of 205 · Next page · Last page