FoonLudum Dare ExplorerLD46 → Keep the fire going

Keep the fire going

By crazygamingfab

View on ldjam.com

CategoryRankScoreCount
Overall2.3113
Fun2.0412
Innovation2.1012
Theme2.7512
Graphics1.6512
Audio1.9012
Humor1.7510
Mood2.0012

Comments

quinn-patrick 2020-04-22 00:36

While it's clear that you didn't get a lot done with this game, you didn't give up, and I have respect for anyone who submits their work. As it happens, I also use game maker, so I had a look at your project and I have a few tips. For one, your collisions will work better if you distinguish between horizontal and vertical collisions. That way the character will slide along walls instead of getting stuck on them like they're made of velcrow. You can achieve this by checking collisions while the player moves like so:

if(press down){ y += speed while(colliding with wall) y-- }

Also, the game_end function that you used actually closes the game. It would be better to send the player to another room for game over, or display a game over message across the screen and give them the option to try again, if you have time to make that.

If you have fun making games, you should keep doing it. You can only get better. If you want, you can check out my game and download the code, as it's also a gms2 project.

crazygamingfab 2020-04-22 17:59

thanks man! I appreciate your help, after the voting is done I will probably continue that project. it had a good idea just not that greatest execution.

adonisdevs 2020-04-23 20:33

This is cool :) You made a functional game that plays all the way through, which not a lot of other people can say. If you do plan to continue working on this game, I'd recommend making the player pick up the sticks and carry them back to the campfire before time gets added. Also, maybe some enemies would make it harder! I will say, you do get a few bonus points for not having obnoxiously loud bad music, which a lot of non-musician game developers seem to do haha (including me). Nice!

crazygamingfab 2020-04-24 04:05

Thanks man, I appreciate people leaving nice comments like that I wanted to put enemys in at first but I did not know how. the music i tried to go lower tone to not make any annoying sounds.

james-beninger 2020-04-25 00:44

Contrats on making a finished game! It's a simple one, but it works fine. My main comments (moving along walls and the abrupt end) are already taken. I'd also suggest compiling for HTML5 in the future. It's an easy way to get more eyeballs on your game, since it works in all systems and is a bit easier to start up. Just change the target from Windows to HTML5 in the upper-right corner before building.