Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
( 1)

Very cool game! I'm surprised you were able to make so many different games during the time most people barely finished 1 single game!

I'm curious about your Leaderboard, what's the backend for it? I also seems like a really nice tool to be able to actually see how many people played your game, which is super practical.

My only complaint would be the rule of some games that aren't completely clear when you start them. I found myself looking at ticks going up in the music scale game when I thought I was actually playing well and ended up loosing. That wasn't really clear to me. And for some other rules, I only knew because I read some of the other comments before starting playing.

But except for that, super nice! Like the music, the sfx (except the special card selection one, it sounds too negative somehow) and the cute art.

Keep making nice game! :D

( 1)

The backend for the leaderboards is just a simple PHP script that dumps the scores to a database. And then there is another script that gets wanted amount of scores from it and returns then as JSON.

(2 edits) ( 1)

Simple enough. Do you have any way to prevent fake scores? Not sure it would even be possible for someone to cheat, but still. Something like having a random float at the start of the game that multiplies the actual score and that you verify before sending the score online, so someone can't just change the value of their score in game.

Also, I didn't mention that in my first comment, but when playing on my phone, I couldn't type in a name for the Leaderboard, feels like you might have lost a couple of potential players because of that.

( 1)

There is a very dumb verification method there too to keep curious players from trying to spoof the submissions. But nothing too fool proof.

Yeah it's very annoying that Unity's input boxes don't open the onscreen keyboard on mobile. I guess I should always at least put some "anonymous" placeholder there so it doesn't fully block from progressing.

Definitely a good idea to have a randomly generated name for the Leaderboard if none are typed in!