The first program I ever wrote was a choose your own adventure, I think written on my family’s IBM PC jr in Basic. It’s pretty amazing how far a kid can get with GOTO statements and a lot of patience. But for some reason I couldn’t (or didn’t know how to) save it, so I’d work on it all day, have my sister and mom play it, and then shut off the computer thus losing my days work. Or at least, that’s how I remember it.…
A 4k-Room Text Adventure Written by One Human in QBasic No AI
51–60 of 114 posts
Re: A 4k-Room Text Adventure Written by One Human in QBasic No AI
#52The first program I ever wrote was a choose your own adventure, I think written on my family’s IBM PC jr in Basic. It’s pretty amazing how far a kid can get with GOTO statements and a lot of patience. But for some reason I couldn’t (or didn’t know how to) save it, so I’d work on it all day, have my sister and mom play it, and then shut off the computer thus losing my days work. Or at least, that’s how I remember it.…
When I was in Jr. High, we had an Atari 400. Mostly I used it to play Missile Command and Star Raiders, but it also came with a BASIC cartridge. In the back of the manual were four BASIC programs. The first three were very simple, stuff like a loop that prints your name 10 times and then exits. The last program balanced your checkbook. It was 4 pages long. I laboriously typed it in, hunt-and-peck style, which took ho…
I've always wondered if there is a correlation between developers and people that can enjoy tough but fair games like Super Meat Boy because of this.
Re: A 4k-Room Text Adventure Written by One Human in QBasic No AI
#53I downloaded the rooms.txt file and the word "handcrafted" is doing some heavy lifting. It's like one sentence per room. Did I miss something? I don't want to play the game (I hate text adventures), but I want an idea of how much effort went into this. Example: --ROOM 22 START-- Village of Oathmoor 23,0,0,21 You find yourself in a narrow, dimly lit alley. An ELDERLY WOMAN sits perched on a broken stool, her piercing…
Even if it’s only 1 sentence per room (it’s not), that’s still 4000 sentences. I’d guess this is at least a few hundred pages of written work (without downloading it and just based on what you’ve shared). That seems pretty substantial to me. Not sure what the length has to do with handcraftedness though. This comment is handcrafted even if it is short.
Re: A 4k-Room Text Adventure Written by One Human in QBasic No AI
#54A text adventure of all things seems like it’d be great for AI though. You could have natural open ended conversations with NPCs to learn whatever they can tell you about the world, for example. This is one area where human generated content isn’t really better, you’d just end up with boring dialog trees to traverse.
Re: A 4k-Room Text Adventure Written by One Human in QBasic No AI
#55Re: A 4k-Room Text Adventure Written by One Human in QBasic No AI
#56A text adventure of all things seems like it’d be great for AI though. You could have natural open ended conversations with NPCs to learn whatever they can tell you about the world, for example. This is one area where human generated content isn’t really better, you’d just end up with boring dialog trees to traverse.
Re: A 4k-Room Text Adventure Written by One Human in QBasic No AI
#57If you are trying to beat the record for “most rooms in a text adventure”, I’m afraid you’ve got a long way to go - Level 9’s Snowball has more than 7k rooms.
IIRC, AvatarMUD (avatar.outland.org) has 20,000+ rooms in it. It's been a long time since I played, but it's absolutely massive!
Collaborative building over decades adds up!
Re: A 4k-Room Text Adventure Written by One Human in QBasic No AI
#58Re: A 4k-Room Text Adventure Written by One Human in QBasic No AI
#59I downloaded the rooms.txt file and the word "handcrafted" is doing some heavy lifting. It's like one sentence per room. Did I miss something? I don't want to play the game (I hate text adventures), but I want an idea of how much effort went into this. Example: --ROOM 22 START-- Village of Oathmoor 23,0,0,21 You find yourself in a narrow, dimly lit alley. An ELDERLY WOMAN sits perched on a broken stool, her piercing…
The horseshoe theory of ai generation tells us that handcrafting and content generation extremism end up very close to each other: https://emshort.blog/2016/09/21/bowls-of-oatmeal-and-text-ge...
The fact that something is generated or hand-crafted is not interesting by itself no matter how much people try to pretend otherwise for social cohesion purposes. Mediocre thing + no AI and Mediocre thing + AI seem to be orthogonal to what people actually care about at the end of the day.
Re: A 4k-Room Text Adventure Written by One Human in QBasic No AI
#60Earlier quoted context omitted.
Similar background here. The public library had Apple II machines and I became quite enamored with making proto-text adventures in Applesoft BASIC. Because you had to sign-up for time I wrote a lot of my programs longhand on nth generation photocopies of "program template" sheets that they handed out at the library (lined paper with columns for line numbers, statements, comments, etc). The spaghetti code was astoundi…
One of the most humbling moments in my life was learning from a friend what a object was, and how that differed from GOTO statements. I had already done something similar by inventing abstraction, when I figured out that I could pre-define certain musical notes and then use those defined notes more simply in my BASIC code. I had not, however, made the leap between re-using notes and re-using rooms in a text adventure…
Looking back I wish I'd had a mentor. I think I would have accomplished so much more if I'd had somebody to offer some guidance and gentle direction.