I found a very nice tutorial on howto write an text adventure in C:
https://helderman.github.io/htpataic/htpataic01.html
Github repo is here: https://github.com/helderman/htpataic
MIT License: https://github.com/helderman/htpataic/b ... er/LICENSE
I compiled it up to chapter 8 for Gigatron.
Commented out #include <stdbool.h>
and included:
#define bool int
#define false 0
#define true 1
in various files.
So maybe someone now wants to extend/write their own adventure
In the zip in subfolder v0 is the original code. Only int main(void) added. Exe is for Mac Ventura.
best, Peter