FoonLudum Dare ExplorerUsers → mymdz

mymdz

Games

YearLDThemeGameDivisionRankOvFuInThGrHuMo
202456Tiny CreaturesπŸ‘₯TinyWarjam5273.573.253.163.724.063.703.63

Performance over time

overall score (left axis) percentile (right axis)

Scatterplots

Fun vs Overall

Innovation vs Overall

Theme vs Overall

Graphics vs Overall

Humor vs Overall

Mood vs Overall

Comments by mymdz

LD56 — Tiny Creatures

Critters, Conjure, Cannonade! by PureGarlic 2024-10-10T12:16:54Z

This is probably the most addictive game here. Good work!

Flea Patrol by Sviborg 2024-10-11T14:08:43Z

Poor wolf, but it's the wolf's problem πŸ˜„ In our game there are also fleas that bring suffering, but not to the wolf but to the dogs. Paper art is also very cute

Rat Dead Redemption by GreenPig 2024-10-09T10:20:07Z

It has a good atmosphere and sound. But the control is hard, as it requires accuracy from the player

Apparatus by evindor 2024-10-12T13:05:07Z

Very interesting mechanics, ideas and art. I'd like to play more, but the game freezes in this state every time, immediately once blue guys meet the red ones, and only page reloading helps (Chrome, macOS). Both on Ludum and itch.io

Π‘Π½ΠΈΠΌΠΎΠΊ экрана 2024-10-12 Π² 16.01.21.png

tiny villages by OldDog 2024-10-12T12:57:49Z

I really like how it looks, but didn't like mechanics as my index finger was terribly tired and it was cramping πŸ₯²

Goops by Arsvarg 2024-10-10T09:45:47Z

Charming art, very nice goopies :) I got stuck on this level; probably, there should be one red instead of blue, or I've missed something Π‘Π½ΠΈΠΌΠΎΠΊ экрана 2024-10-10 Π² 12.41.45.png

Follow the light by Maria Alrik 2024-10-09T13:37:15Z

That's something new, a cross-platform game with super-optimised performance πŸ˜„

Dshniidawl Woods by Kalbshack 2024-10-09T11:41:13Z

Visual stuff looks great!

Laverino by Kirass 2024-10-09T14:04:25Z

the first time it was annoying to get stuck in a drawer Π‘Π½ΠΈΠΌΠΎΠΊ экрана 2024-10-09 Π² 16.49.05.png

And disrespect to your team for spamming comments like "I really liked this game! It's awesome!" without playing the game, speculating on karma. This is absolutely obvious from your statistics. Π‘Π½ΠΈΠΌΠΎΠΊ экрана 2024-10-09 Π² 17.01.03.png

Insignificant creatures by DmVCh 2024-10-08T10:58:20Z

Love ending in paradise! And music choice for the hell

Veil of the Forgotten by Akuma016 2024-10-09T08:00:34Z

Very nice art!

But it's not obvious that the player should press twice W or space to jump higher. Also, returning to the menu is impossible without reloading the page, that's a little frustrating.

Tinny Terror Escape Run by cutepurrr 2024-10-09T07:42:08Z

Looks cute :)

The game is incorrectly scaled in the browser window. In GameMaker it can be easily fixed by adding a persistent object to the home room, like obj_display_manager. Here is my compilation of what can be found on the internet.

obj_display_manager / Create event: ``` base_width = room_width; base_height = room_height; width = base_width; height = base_height;

current_scale = 1; ```

obj_display_manager / Step event: ``` var _new_width = browser_width; var _new_height = browser_height;

if (_new_width != width || _new_height != height) { width = _new_width; height = _new_height; var _aspect = (base_width / base_height);

if ((width / _aspect) > height) { window_set_size((height *_aspect), height); } else { window_set_size(width, (width / _aspect)); } current_scale = window_get_width() / base_width; display_set_gui_maximize(current_scale, current_scale, 0, 0); window_center(); } ```