FoonLudum Dare ExplorerLD41 → Typey Boi The Game

Typey Boi The Game

By dragonzbw

View on ldjam.com

CategoryRankScoreCount
Overall4.004
Fun3.754
Innovation3.504
Theme4.004
Graphics4.165
Audio4.003
Humor3.003
Mood4.003

Comments

gastricsparrow 2018-04-23 15:56

Awesome game! Text adventure and typing game, both my favorite, and very well done to boot.

- Pros: Cool graphics and aesthetics. Game feel is abundant in the minor details. Fighting sequence is immersing, with the urgent switching mechanics that's mostly well-balanced which really push the enjoyment level to the max. - Cons: Very little to complain about here. Only how long the walking takes between screens, and the choice of words while relevant doesn't really need to be, since it repeats too much.

Conclusion: The winner is... One typey boi.

nicmagnier 2018-04-23 20:31

Really neat and very well done. I love the art style which is minimalist and extremely well done.

the gameplay is good and I enjoyed it but my issue is that on some keyboard to do an apostrophe (which is use in multiple sentence in the game) you have to press shift which switch to defence mode. I guess we can say this is the hard mode. It's also a shame that the puzzles repeat themselves.

But overall this is really excellent

nicmagnier 2018-04-23 20:32

oh! another small improvement, it would be nice to be able to start typing even when the character move between scenes.

bsanchez 2018-04-23 22:26

Graphics are really neat, and I must confess I really love text-based adventures, but the windows build kinda don't work. I'me stuck with the 'type "help"' message, and all my character can do when I type it is raise it's arms, not giving me help at all

hkoisumi 2018-04-24 00:46

Freaking amazing! Excelent work, wanna check ours too??

https://ldjam.com/events/ludum-dare/41/hype-time

dragonzbw 2018-04-24 12:32

@BSanchez strange... is anyone else having trouble with the windows build? Make sure you’re just typing the word help without quotes.

keithdae 2018-04-24 13:58

Had the same issue as @BSanchez with windows build, couldn't make it past the initial "type help" part

dragonzbw 2018-04-24 17:09

@BSanchez @Keithdae I’ll check my code when I get home this afternoon. It might have to do with pragma strict. If you’ve got any ideas about why this might not work on windows, please tell me. ``` public GameObject helpText;

void Start() { StartCoroutine(UpdateC()); }

IEnumerator UpdateC() { while(true) { string inputString = “”; while(!Input.GetKeyDown(KeyCode.Return)) { inputString += Input.inputString; yield return null; } string inpt = inputString.ToLower().Replace(“\n”,”“).Replace(“ “,””); if(inpt == “help”) { helpText.SetActive(true); } yield return null; } } ```

keithdae 2018-04-24 17:14

@DragonZBW Maybe change .Replace(“\n”,”“) with .Replace(“\\\n”,”“), I think I read something about that at some point. Or add a .Replace(“\r”,”“) since on windows the line returns are \r\n if I recall correctly