One of my lingering questions for the project has been what to do with games that lack both an author’s name and year of release. Where should they be placed in sequence? Without a biography or definite historical context to peg to, it’d be easy for these games to fall through historical memory.
But: we’re doing all the adventure games here, even though I was tempted to let this one slip away (for reasons you’ll see shortly).
I tagged this game as “1981” for a few reasons:
- This was from a TRS-80 Model I disk. Tandy replaced the Model I with the Model III by 1980 and the number of Model I-specific games started to decline.
- In archaeology, when an artifact can’t be dated based on its own properties, it helps to look at the layer it came from and if anything nearby can be used as a date instead. At Ira Goldklang’s site where this was first archived, the disk collection it was in had one program each from 1979, 1980, 1981, and 1982.
- It’s a treasure hunt with *asterisks around the names of treasures* (13, in this case, hidden by the “thief-eccentric” Irvin Kaputz). We’ve only had 3 and a half treasure hunt style adventures in 1981 (Inca Curse, Miser, Chambers of Xenobia, and I’m counting Hezarin as half) which puts the percent roughly at 20%; this means in 1981 the style is still around but starting to fade out as a plot device (compared to around 40% of games the year before, and more than 60% the year before that). If we’re playing the odds, 1981 might even be an overestimate.
- The title screen has the “I am your puppet” phrase which started to be less common after 1981.
Still, I want to emphasize this is a straight guess, and there’s nothing preventing the game from being from 1987 or some such.
The parser of Irvin Kaputz is bizarre to the extent I was unclear if I was seeing bugs or “intended” messages. For example, UNLOCK DOOR at the screen above leads to
IT’S NOT LIT
The game was thinking UNLIGHT and only looking at the first three letters of the word. But then, I tried OPEN DOOR
I SEE NOTHING VERY SPECIAL
which led me to suspect the verbs were mismatched and not going to the right actions. After a bizarre scene with a robe…
…and the fact that the HELP command mentioned on the title screen from the top of this post doesn’t even exist, I decided this was one of those adventures where studying the source code was going to be part of the challenge.
Before I get to the source code, let me lay out what I’ve managed to reach:
Out in the open at the start there’s a *GOLDEN CALF* and *JEWELED FRUIT*. The northwest corner of the map has a golf course where a *RUBY* hides within the 18th hole, and in the sea next to a boat there is a *GOLDEN ANCHOR*. I haven’t been able to get out of the sea once I’ve gotten in.
The boat itself has some MATCHES which I can use to light a RUSTY OLD LAMP, but I haven’t been able to get into any dark places and the lamp has otherwise not been useful.
Other than the LOCKED DOOR at the start I haven’t been able to get in, there’s also a CLOSED GATE (ditto) and a DRAWBRIDGE with PORTCULLIS (same).
I’ve put the source code here. If you want to test it out, you can go to the Willus site I use and pick a random BASIC program (like this one, Election Simulator 1980), cut and paste the source code, then hit “Emulate edited program”.
A few observations I came up with based on the source:
- I originally thought the game only understood GO NORTH and so forth fully spelled out, but the abbreviations N, S, E, W, U, and D are in; they need to be typed with a period after them. I’ve never seen this before in any adventure game, and is distinct enough if I ever see it again I will suspect the game is somehow linked to Irvin Kaputz.
- There’s a message about LEAVE YOUR TREASURES HERE AS YOU FIND THEM that I haven’t come across in the game proper; I suspect I haven’t been to the right room yet. The game’s SCORE command says I have so far recovered 0 treasures.
- The game has weirdly detailed rules for burning things that aren’t the lantern. You can burn the robe (you die because YOU BURN WITH IT), the flag at the 18th hole of the golf course, and a parchment which I haven’t found yet.
- The I SEE NOTHING VERY SPECIAL message is coming from the game defaulting to an item’s EXAMINE description if an action isn’t done. That still doesn’t mean the actions aren’t broken, but this might be quirky game design rather than a bug.
What I haven’t been able to do as of yet is make progress. This is partly my tentative desire to not completely spoil the game — I haven’t line by line tried to see what verb might apply to the gate, for instance — and partially because I was frankly hoping/expecting to find a simple bug due to a character corruption (or something similar) that doesn’t seem to be there.
I’m also willing to call this one “done”; I’ve squeezed out some interesting information regarding the movement and detailed arson abilities, but I don’t know if Irvin Kaputz has anything else left to give.