Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Weird Baby Games

17
Posts
2
Followers
2
Following
A member registered Aug 15, 2022 · View creator page →

Creator of

Recent community posts

No worries. I know just how easy it can be to do something like that!

Did the Ping method in the LeaderboardCreator class get moved or removed?

No problem! It's easy to lose track of all the notifications in everything we use

Thank you for your feedback! I've got a lot of powerups planned and it includes a targeting ability

Well, it's me again :D

I'm getting a "A Native Collection has not been disposed, resulting in a memory leak. Enable Full StackTraces to get more details." (enabling Full stack trace doesn't give me any more info). I'm thinking it might have something to do with leaderboard creator since it only shows up after I scroll through my levels enough number of times, displaying the rankings for each as I scroll through. This discussion is talking about the same error and pointing to webRequests. I have no idea what that's about, really, but afaik, this is the only plugin I use that has it.

That would be extremely handy specially when I add more levels! Thanks!

Hey, I missed your last message somehow. Yeah, sure! I'd be honored to be on the itch page of the tool!

Btw, I logged in and somehow all my leaderboards got lost. Fortunately, putting in the secret keys gets them back but having 15 (so far) leaderboards to restore can be a pain.

Excellent! Thanks!

Hello again! Here's the game I used your leaderboard on just in case you're going to have a list of games that use it for promotion or something. I just made it public a few days ago (there's already an error I need to fix but for now it'll have to do).

The game is originally targeted for mobile but I uploaded it to itch for testing and feedback purposes. Now I'm trying to get an android build out as well but it throws a build error that includes this line:

C:\Users\nenet\Documents\Git\Brick-It-Down\Library\Il2cppBuildCache\Android\armeabi-v7a\il2cppOutput/Dan.cpp:10491: error: undefined reference to 'CopyToClipboard'

clang++.exe: error: linker command failed with exit code 1 (use -v to see invocation

So I'm thinking it might have to do with something in Leaderboard Creator? I'm hoping there's something you can do with it otherwise I'm going to have to remove everything related to LC when building to android then putting them back in for my WebGL builds which can get quite tedious specially considering the number of leaderboards I'm using. 

Thank you!

Nice! Much appreciated, thanks!

(1 edit)

That's a nice bit of creative thinking! But I think it's fine for now, I've implemented my own thing for now. I decided to just show the user's rank and score as well as the #1 and the rank lower just so they have a general idea where their best score stands relative to others. 

I'm also using multiple boards (1 per level) which are ranked according to speed. So I'm actually using the Extra field to identify which level it is since, afaik, there's no way to query the leaderboard name or other identifier itself? And since it's ranked by time, the highest score is actually the lowest rank but that's easy enough to address with sorting.

Maybe the biggest thing right now is a way to do something if the server can't be reached or the leaderboard is inaccessible for some reason. I'd like to be able to display a message to the player. Right now I can see the log error  msgs in the console but not a way to do something when they happen.


Thank you, again!

Yeah, I figured that out as well. Is there any way to make it so that it gets uploaded even if it's the same user? There's a certain satisfaction to seeing yourself have all the highest scores :D

OK. I think I found the issue. It won't upload a new value if the username is already in the leaderboard. I tested it here and in my script.

Hey, me again! I really don't want to bother other devs so I plugged away at this for several days but it I can't seem to get it to upload more than one entry in my leaderboard.

I have a script that only uploads an entry if no similar score exists. Every thing's fine if the leaderboard is empty. However, if there's already an entry, a new entry doesn't seem to get uploaded.

What happens is when I get a new score the script runs UploadNewEntry . I get a "successfully uploaded entry data" message. I then run GetLeaderboard to fetch the new entry. I get a "Successfully retrieved" message but no new entry actually appears.

When I clear the leaderboard and run the script again, the new entry appears but no new ones will.

Well that did the trick! And now I feel silly for forgetting about adding packages that way...

(1 edit)

Welp, I'm too noob and I can't figure out how to get Newtonsoft. Clicking your link takes me to a Unity Manual. Clicking that takes me to another one. Link there takes me to Json.Net. CLicking "Download" gives me two options that I can see, none of which I know what to do with, really. I go to Rider and there's an option there to install Newtonsoft.Json, which I did, but it doesn't fix the problem.

(2 edits)

UNity's giving me an error: "The name "JsonConvert" does not exist in the current context. Also, is there any way to get just the "Rank" value or is that the Entry index?