Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Hilarious take on the theme! I gotta say I really liked the sound on this game. Small sounds on every action made it feel like every one had a real effect on gameplay and consequence and kept me engaged. I also managed to get on the leaderboard so there's that!


Mind if I asked how you did the leaderboard? It was really well executed and I didn't manage to make an online one for my game.

Thanks for playing and thanks for you comment!

So about the leaderboard. I have a small raspberrypi at home running an apache2 server and mysql. The database contains just one table with name, score, date and id of course. The game thends a http requests to a php-file on my pi (something like /cmd=select&amount=20 for the best 20 players) which handles the mysql query and encodes the result as json. Looks like that: {"id":22,"name":"Munsi","score":9890,"date":"2020-04-06 20:37:10"}. And this is something which unity can understand :D.

Did not manage to create a safe encryption or authentication system but there are is sensitive or important data on my pi. If you are further interested, we can talk about more on discord?