refrax295 2021-04-26 18:27
I get "Access denied" on the Google Drive link. You may need to set it to public.
Foon → Ludum Dare Explorer → LD48 → Dark Dungeons and Scary Creatures (DDSC)
By python-b
| Category | Rank | Score | Count | |
|---|---|---|---|---|
| Overall | 2.75 | 4 | ||
| Fun | 2.75 | 4 | ||
| Innovation | 3.00 | 4 | ||
| Theme | 3.50 | 4 | ||
| Graphics | 3.25 | 4 | ||
| Audio | 2 | |||
| Humor | 3.00 | 3 | ||
| Mood | 3.00 | 3 |
I get "Access denied" on the Google Drive link. You may need to set it to public.
Like @RefraX295 already pointed out I get “Access denied” on the Google Drive link. You have to set it to public
Is this only for linux?
I don't see an actual executable in the downloadable archive, only the source code. Not sure if that's intended, but most people here probably won't know how to compile it or just won't bother. The code uses Makefiles (people on e.g. Windows or Mac don't usually have `make`), `.tar` archives (again, not the most widespread thing), and links a system-provided `sfml` library, which, again, most people probably won't have. So, building this on Windows or Mac would be a nightmare.
That being said, I love compiling stuff, so I did try it. I'm on Linux, and I already have `sfml` installed. First of all, a few notes on compilation: - You use "cd" to the source directory, but that doesn't work in my system. In general, each line of a Makefile build rule can be executed in a separate sub-shell, and its working directory doesn't persist across lines. [Here's](https://gist.github.com/lisyarus/7a8d10a2cd82abd8010f2e9717221fae) how you could rewrite this Makefile to make it work - You use `ceil` and `floor` functions without including the appropriate `
Now about the game itself: looks promising, reminds me of Heroes turn-based combat. The interface needs a lot of work, though, and the exact sequence of actions is a little unclear (e.g. when exactly should I press the skill buttons?). Nevertheless, managed to win a few fights and go deeper before I was killed. Anyways, nice job!