Comments

Log in with itch.io to leave a comment.

Reminds me of Hacknet, good stuff, I always appreciate new takes on how a Roguelike can be tackled

(1 edit)

I wanted to see a game like this for a while - even the tutorial was fun to play. Liked the little bits of Deacon's seemingly failing marriage. Keep, ahem, hacking at it!

This game is such an amazing idea! I enjoyed playing through and despite having some annoyances (that are expected and not the game's fault) about not having tab completion and other things I'm used to in BASH, I still loved it.

Not sure if it was just the browser size, but when I tried to "cd agent-reg.government" on the itch.io page, it chopped off the "t" and put it on a new line which meant I couldn't figure out how to actually take down the server. Allowing "*" or something would make that easier, but I understand that 7 days is super hard.


Thanks for the cool experience!

(1 edit)

I'm so glad you liked it! And yeah, I instinctively pressed tab a ton of times when I was making/testing it. Would for sure be something I add to a full(er) version.

That chop off thing is a known bug, it's due to the way text is (dumbly) cached to avoid re-drawing. I actually thought I had gotten rid of it but apparently not. Fortunately you don't need to go into that directory to complete the tutorial!

Oh actually the bug was totally unrelated to the drawing thing. It was essentially miscounting the number of characters on the line so it would truncate way too soon. I made a quick fix for it so it shouldn't happen any more!

I ran into that bug, you can actually just enter a bunch of spaces or random characters to overflow the first line, and start your command on the next line and it will take only that line as the input ;)

(1 edit)

Like the looks of it! Small frustration -- when I hit 'backspace' to correct a typing error, my browser ends up going back to the previous page and I lose my game. Is there something you can do to capture that backspace/disable that? (Though I was able to disable this in my browser myself, might help others.)

(1 edit)

oof that's a bad bug. I didn't run into it myself but I added "backspace" as one of the default behavior overrides (spacebar was the only one before), hopefully that fixes the issue. Always kinda tricky when you take tons of keyboard input.