I'm sure many of you guys know about the 1976 game Colossal Cave Adventure. I downloaded it on my Mac, and it allows you to save your progress, and it saves it in a .adv file which you can open up and resume your game where you left off. I opened it up in TextEdit (changed it to a .txt file) and it looks like a whole mess of encoded text of God-knows what language. I attached a picture
https://i.stack.imgur.com/RkBlb.png
as well as a link on google drive to the .txt file
https://drive.google.com/file/d/1Ku4QO4cpx61X8mS9bBgGK3AyViczczNl/view?usp=sharing For some reason the google drive preview looks like Chinese or some other language, but if you download the .txt you will see it's the same thing as the igmur picture.
I ran the file through python using this:
import io
with io.open(filename, 'rb') as f:
text = f.read()
And text
gave me this:
https://drive.google.com/file/d/1KyjdPxUDkBy5ATZfg1GdIexeP9nK-Km6/view?usp=sharing
Just a sample of it (click on above link to see full file): b'\xc1\xdfd\x00\x84K\xfd\xcb\xff\x93\xcb\xf9\x90\\xa9\xd5\xdb\x10\xaf\xdb\xb5{_\xd1\xf9\xcaw\xd2\xc13\x8e\xd1\xd6\x06\xce\xe3V\xd0\xa8
Trying to decode it in Python gave me this error:
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xc1 in position 0: invalid start byte
I tried decoding it many many ways and they all failed. I need to decode this into something readable. How do I, and what "text language" is it in?
Thanks