diff --git a/Makefile b/Makefile index c4bda90..00b46be 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,8 @@ # adapted by 4am on 2018-01-07 # -DISK=Pitch Dark.hdv +BUILDDISK=build/Pitch Dark.hdv +VOLUME=PITCH.DARK # third-party tools required to build # https://sourceforge.net/projects/acme-crossass/ @@ -39,45 +40,37 @@ asm: md $(ACME) -r build/zinfo5u.lst src/zinfo/z5u/z5u.s dsk: md asm - cp res/"Pitch Dark.master games collection.do.not.edit.hdv" build/"$(DISK)" + cp res/blank.hdv "$(BUILDDISK)" cp res/_FileInformation.txt build/ bin/fixFileInformation.sh build/_FileInformation.txt - $(CADIUS) ADDFILE build/"$(DISK)" "/PITCH.DARK/" "build/GRUE.SYSTEM" - $(CADIUS) ADDFILE build/"$(DISK)" "/PITCH.DARK/" "build/ONBEYOND.SYSTEM" - $(CADIUS) ADDFILE build/"$(DISK)" "/PITCH.DARK/" "build/ZINFO.SYSTEM" - $(CADIUS) ADDFILE build/"$(DISK)" "/PITCH.DARK/" "build/PITCH.DARK" - $(CADIUS) ADDFILE build/"$(DISK)" "/PITCH.DARK/" "res/PITCH.DARK.CONF" - $(CADIUS) ADDFILE build/"$(DISK)" "/PITCH.DARK/" "res/GAMES.CONF" - $(CADIUS) ADDFILE build/"$(DISK)" "/PITCH.DARK/" "res/CREDITS.TXT" - $(CADIUS) CREATEFOLDER build/"$(DISK)" "/PITCH.DARK/LIB/" - $(CADIUS) ADDFILE build/"$(DISK)" "/PITCH.DARK/LIB/" "build/ONBEYONDZ1" - $(CADIUS) ADDFILE build/"$(DISK)" "/PITCH.DARK/LIB/" "build/ONBEYONDZ2" - $(CADIUS) ADDFILE build/"$(DISK)" "/PITCH.DARK/LIB/" "build/ONBEYONDZ3" - $(CADIUS) ADDFILE build/"$(DISK)" "/PITCH.DARK/LIB/" "build/ONBEYONDZ4" - $(CADIUS) ADDFILE build/"$(DISK)" "/PITCH.DARK/LIB/" "build/ONBEYONDZ5" - $(CADIUS) ADDFILE build/"$(DISK)" "/PITCH.DARK/LIB/" "build/ONBEYONDZ5U" - $(CADIUS) ADDFILE build/"$(DISK)" "/PITCH.DARK/LIB/" "build/ZINFO1" - $(CADIUS) ADDFILE build/"$(DISK)" "/PITCH.DARK/LIB/" "build/ZINFO2" - $(CADIUS) ADDFILE build/"$(DISK)" "/PITCH.DARK/LIB/" "build/ZINFO3" - $(CADIUS) ADDFILE build/"$(DISK)" "/PITCH.DARK/LIB/" "build/ZINFO4" - $(CADIUS) ADDFILE build/"$(DISK)" "/PITCH.DARK/LIB/" "build/ZINFO5" - $(CADIUS) ADDFILE build/"$(DISK)" "/PITCH.DARK/LIB/" "build/ZINFO5U" + $(CADIUS) CREATEFOLDER "$(BUILDDISK)" "/$(VOLUME)/Z/" + for f in res/Z/*; do \ + $(CADIUS) ADDFOLDER "$(BUILDDISK)" "/$(VOLUME)/Z/$$(basename $$f)" "$$f"; \ + done + $(CADIUS) ADDFOLDER "$(BUILDDISK)" "/$(VOLUME)/" "res/HINTS" + for f in "build/GRUE.SYSTEM" "build/ONBEYOND.SYSTEM" "build/ZINFO.SYSTEM" "build/$(VOLUME)" "res/$(VOLUME).CONF" "res/GAMES.CONF" "res/CREDITS.TXT"; do \ + $(CADIUS) ADDFILE "$(BUILDDISK)" "/$(VOLUME)/" "$$f"; \ + done + $(CADIUS) CREATEFOLDER "$(BUILDDISK)" "/$(VOLUME)/LIB/" + for f in ONBEYONDZ1 ONBEYONDZ2 ONBEYONDZ3 ONBEYONDZ4 ONBEYONDZ5 ONBEYONDZ5U ZINFO1 ZINFO2 ZINFO3 ZINFO4 ZINFO5 ZINFO5U; do \ + $(CADIUS) ADDFILE "$(BUILDDISK)" "/$(VOLUME)/LIB/" "build/$$f"; \ + done # sample save game files for development - #$(CADIUS) ADDFILE build/"$(DISK)" "/PITCH.DARK/Z/WISHBRINGER/" "res/R69.850920.SAV" - #$(CADIUS) ADDFILE build/"$(DISK)" "/PITCH.DARK/Z/ZORK.I/" "res/R88.840726.SAV" + #$(CADIUS) ADDFILE "$(BUILDDISK)" "/$(VOLUME)/Z/WISHBRINGER/" "res/R69.850920.SAV" + #$(CADIUS) ADDFILE "$(BUILDDISK)" "/$(VOLUME)/Z/ZORK.I/" "res/R88.840726.SAV" txt: dsk - mkdir -p build/text + mkdir -p build/TEXT $(PY3) bin/textnormalize.py res/text/* - cd build && $(CADIUS) ADDFOLDER "$(DISK)" "/PITCH.DARK/TEXT" text + $(CADIUS) ADDFOLDER "$(BUILDDISK)" "/$(VOLUME)/TEXT" build/TEXT artwork: dsk - $(CADIUS) ADDFOLDER build/"$(DISK)" "/PITCH.DARK/ARTWORK" "res/artwork" - $(CADIUS) ADDFILE build/"$(DISK)" "/PITCH.DARK/ARTWORK/" "res/DHRSLIDE.SYSTEM" - $(CADIUS) ADDFOLDER build/"$(DISK)" "/PITCH.DARK/ARTWORKGS" "res/artworkgs" + $(CADIUS) ADDFOLDER "$(BUILDDISK)" "/$(VOLUME)/ARTWORK" "res/artwork" + $(CADIUS) ADDFILE "$(BUILDDISK)" "/$(VOLUME)/ARTWORK/" "res/DHRSLIDE.SYSTEM" + $(CADIUS) ADDFOLDER "$(BUILDDISK)" "/$(VOLUME)/ARTWORKGS" "res/artworkgs" mount: dsk - osascript bin/V2Make.scpt "`pwd`" bin/pitchdark.vii build/"$(DISK)" + osascript bin/V2Make.scpt "`pwd`" bin/pitchdark.vii "$(BUILDDISK)" md: mkdir -p build diff --git a/bin/textnormalize.py b/bin/textnormalize.py index 2e0c1d7..6038a58 100755 --- a/bin/textnormalize.py +++ b/bin/textnormalize.py @@ -8,7 +8,7 @@ for f in sys.argv[1:]: with open(f) as buffer: lines = buffer.readlines() shortf = f.replace(".txt", "").replace("res/text/", "").upper() - newf = "build/text/" + shortf + newf = "build/TEXT/" + shortf fileinfo.append(shortf + "=Type(04),AuxType(0000),VersionCreate(70),MinVersion(BE),Access(C3)") with open(newf, 'w') as buffer: for l in lines: @@ -22,5 +22,5 @@ for f in sys.argv[1:]: linelength = 64 elif l.startswith("[description]"): linelength = 77 -with open("build/text/_FileInformation.txt", "w") as infobuff: +with open("build/TEXT/_FileInformation.txt", "w") as infobuff: infobuff.write("\r\n".join(fileinfo)) diff --git a/res/CREDITS.TXT b/res/CREDITS.TXT new file mode 100644 index 0000000..d539bd3 --- /dev/null +++ b/res/CREDITS.TXT @@ -0,0 +1 @@ +Pitch Dark is a frontend for exploring and playing Infocom text adventures. Release 6 / Serial number DEVELOP Copyright 2018-2023 4am https://github.com/a2-4am/pitch-dark ~ On Beyond Z-Machine! is a ProDOS port of Infocom's Z-Machine interpreters. Copyright 2018-2023 qkumba based on code from six different games copyright 1979-1988 Infocom, Inc. ~ WeeGUI is a compact, easy-to-use GUI library for 8-bit Apple II computers. Copyright 2014-2018 Quinn Dunki https://github.com/blondie7575/WeeGUI/ ~ Artwork was scanned from original retail boxes and converted to Apple II native formats with the help of Bmp2DHR copyright 2014 Bill Buckels A2FCBmp copyright 2012-5 Bill Buckels buckshot copyright 2017 Dagen Brock ii-pix copyright 2021-3 Kris Kennaway https://www.appleoldies.ca/bmp2dhr/ https://apple2.gs/buckshot/ https://github.com/KrisKennaway/ii-pix ~ The PRIZM Project (Pretty Reliable Invisiclues for Z-Machine) are genuine Infocom Invisiclues, accessible in your favorite Z-Machine interpreter. Copyright 1999 Digby McWiggle and Steven Marsh Compiled, edited, and Z-coded by Digby McWiggle and Steven Marsh from material supplied by Henrik Dittmann, Paul David Doherty, Volker Blasius, and Mike Threepoint Thanks also to Brian Hall, L. Ross Raszewski, and Graham Nelson http://www.waitingforgo.com/ (offline) ~ Games, descriptions, and artwork are copyright 1979-1988 Infocom, Inc. Invisiclues are copyright 1993, 1999 Activision, Inc. Zork and all other game names are registered trademarks of Activision. [EOF] \ No newline at end of file diff --git a/res/games.conf b/res/GAMES.CONF similarity index 100% rename from res/games.conf rename to res/GAMES.CONF diff --git a/res/HINTS/AMFV#f58005 b/res/HINTS/AMFV#f58005 new file mode 100644 index 0000000..d84dd94 Binary files /dev/null and b/res/HINTS/AMFV#f58005 differ diff --git a/res/HINTS/BALLYHOO#f58005 b/res/HINTS/BALLYHOO#f58005 new file mode 100644 index 0000000..22b70e6 Binary files /dev/null and b/res/HINTS/BALLYHOO#f58005 differ diff --git a/res/HINTS/BEYOND.ZORK#f58005 b/res/HINTS/BEYOND.ZORK#f58005 new file mode 100644 index 0000000..a1635c1 Binary files /dev/null and b/res/HINTS/BEYOND.ZORK#f58005 differ diff --git a/res/HINTS/BORDER.ZONE#f58005 b/res/HINTS/BORDER.ZONE#f58005 new file mode 100644 index 0000000..9840323 Binary files /dev/null and b/res/HINTS/BORDER.ZONE#f58005 differ diff --git a/res/HINTS/BUREAUCRACY#f58005 b/res/HINTS/BUREAUCRACY#f58005 new file mode 100644 index 0000000..cb471d9 Binary files /dev/null and b/res/HINTS/BUREAUCRACY#f58005 differ diff --git a/res/HINTS/CUTTHROATS#f58005 b/res/HINTS/CUTTHROATS#f58005 new file mode 100644 index 0000000..087f0d5 Binary files /dev/null and b/res/HINTS/CUTTHROATS#f58005 differ diff --git a/res/HINTS/DEADLINE#f58005 b/res/HINTS/DEADLINE#f58005 new file mode 100644 index 0000000..7fb91c8 Binary files /dev/null and b/res/HINTS/DEADLINE#f58005 differ diff --git a/res/HINTS/ENCHANTER#f58005 b/res/HINTS/ENCHANTER#f58005 new file mode 100644 index 0000000..b7b2bc1 Binary files /dev/null and b/res/HINTS/ENCHANTER#f58005 differ diff --git a/res/HINTS/HGTTG#f58005 b/res/HINTS/HGTTG#f58005 new file mode 100644 index 0000000..d7ac156 Binary files /dev/null and b/res/HINTS/HGTTG#f58005 differ diff --git a/res/HINTS/HOLLYWOOD#f58005 b/res/HINTS/HOLLYWOOD#f58005 new file mode 100644 index 0000000..a897fd8 Binary files /dev/null and b/res/HINTS/HOLLYWOOD#f58005 differ diff --git a/res/HINTS/INFIDEL#f58005 b/res/HINTS/INFIDEL#f58005 new file mode 100644 index 0000000..a21fdce Binary files /dev/null and b/res/HINTS/INFIDEL#f58005 differ diff --git a/res/HINTS/LGOP#f58005 b/res/HINTS/LGOP#f58005 new file mode 100644 index 0000000..b1f6248 Binary files /dev/null and b/res/HINTS/LGOP#f58005 differ diff --git a/res/HINTS/LURKING.HORROR#f58005 b/res/HINTS/LURKING.HORROR#f58005 new file mode 100644 index 0000000..d12ecc6 Binary files /dev/null and b/res/HINTS/LURKING.HORROR#f58005 differ diff --git a/res/HINTS/MOONMIST#f58005 b/res/HINTS/MOONMIST#f58005 new file mode 100644 index 0000000..2cda344 Binary files /dev/null and b/res/HINTS/MOONMIST#f58005 differ diff --git a/res/HINTS/NORD.AND.BERT#f58005 b/res/HINTS/NORD.AND.BERT#f58005 new file mode 100644 index 0000000..bcb5f40 Binary files /dev/null and b/res/HINTS/NORD.AND.BERT#f58005 differ diff --git a/res/HINTS/PLANETFALL#f58005 b/res/HINTS/PLANETFALL#f58005 new file mode 100644 index 0000000..644e602 Binary files /dev/null and b/res/HINTS/PLANETFALL#f58005 differ diff --git a/res/HINTS/PLUNDERED#f58005 b/res/HINTS/PLUNDERED#f58005 new file mode 100644 index 0000000..f38c07a Binary files /dev/null and b/res/HINTS/PLUNDERED#f58005 differ diff --git a/res/HINTS/SEASTALKER#f58005 b/res/HINTS/SEASTALKER#f58005 new file mode 100644 index 0000000..c866edb Binary files /dev/null and b/res/HINTS/SEASTALKER#f58005 differ diff --git a/res/HINTS/SHERLOCK#f58005 b/res/HINTS/SHERLOCK#f58005 new file mode 100644 index 0000000..87b2d47 Binary files /dev/null and b/res/HINTS/SHERLOCK#f58005 differ diff --git a/res/HINTS/SORCERER#f58005 b/res/HINTS/SORCERER#f58005 new file mode 100644 index 0000000..e157279 Binary files /dev/null and b/res/HINTS/SORCERER#f58005 differ diff --git a/res/HINTS/SPELLBREAKER#f58005 b/res/HINTS/SPELLBREAKER#f58005 new file mode 100644 index 0000000..8e3ba6e Binary files /dev/null and b/res/HINTS/SPELLBREAKER#f58005 differ diff --git a/res/HINTS/STARCROSS#f58005 b/res/HINTS/STARCROSS#f58005 new file mode 100644 index 0000000..01b9b8f Binary files /dev/null and b/res/HINTS/STARCROSS#f58005 differ diff --git a/res/HINTS/STATIONFALL#f58005 b/res/HINTS/STATIONFALL#f58005 new file mode 100644 index 0000000..97c9594 Binary files /dev/null and b/res/HINTS/STATIONFALL#f58005 differ diff --git a/res/HINTS/SUSPECT#f58005 b/res/HINTS/SUSPECT#f58005 new file mode 100644 index 0000000..2917e90 Binary files /dev/null and b/res/HINTS/SUSPECT#f58005 differ diff --git a/res/HINTS/SUSPENDED#f58005 b/res/HINTS/SUSPENDED#f58005 new file mode 100644 index 0000000..a97c3b2 Binary files /dev/null and b/res/HINTS/SUSPENDED#f58005 differ diff --git a/res/HINTS/TRINITY#f58005 b/res/HINTS/TRINITY#f58005 new file mode 100644 index 0000000..2501353 Binary files /dev/null and b/res/HINTS/TRINITY#f58005 differ diff --git a/res/HINTS/WISHBRINGER#f58005 b/res/HINTS/WISHBRINGER#f58005 new file mode 100644 index 0000000..9f6727a Binary files /dev/null and b/res/HINTS/WISHBRINGER#f58005 differ diff --git a/res/HINTS/WITNESS#f58005 b/res/HINTS/WITNESS#f58005 new file mode 100644 index 0000000..e21fc9e Binary files /dev/null and b/res/HINTS/WITNESS#f58005 differ diff --git a/res/HINTS/ZORK.I#f58005 b/res/HINTS/ZORK.I#f58005 new file mode 100644 index 0000000..dcfa80d Binary files /dev/null and b/res/HINTS/ZORK.I#f58005 differ diff --git a/res/HINTS/ZORK.II#f58005 b/res/HINTS/ZORK.II#f58005 new file mode 100644 index 0000000..f04d7e4 Binary files /dev/null and b/res/HINTS/ZORK.II#f58005 differ diff --git a/res/HINTS/ZORK.III#f58005 b/res/HINTS/ZORK.III#f58005 new file mode 100644 index 0000000..fdebce3 Binary files /dev/null and b/res/HINTS/ZORK.III#f58005 differ diff --git a/res/HINTS/ZORK.ZERO#f58005 b/res/HINTS/ZORK.ZERO#f58005 new file mode 100644 index 0000000..10b61b1 Binary files /dev/null and b/res/HINTS/ZORK.ZERO#f58005 differ diff --git a/res/HINTS/ZTUU#f58005 b/res/HINTS/ZTUU#f58005 new file mode 100644 index 0000000..cfa6088 Binary files /dev/null and b/res/HINTS/ZTUU#f58005 differ diff --git a/res/pitch.dark.conf b/res/PITCH.DARK.CONF similarity index 52% rename from res/pitch.dark.conf rename to res/PITCH.DARK.CONF index 954d092..bfb5ad5 100644 --- a/res/pitch.dark.conf +++ b/res/PITCH.DARK.CONF @@ -1 +1 @@ -# Pitch Dark preferences file # Do not edit by hand. # Or do. I'm a comment, not a cop. # value=0|1 FORCE40COLUMNS=0 FORCEUPPERCASE=0 SCRIPTTOFILE=0 AUTOSCRIPT=0 # value=game directory LASTPLAYED=ZORK.I # key=game directory, value=filename of selected version AMFV=R79.DEPROT.Z4 BALLYHOO=R99.861014.Z3 BEYOND.ZORK=R60.880610.Z5 BORDER.ZONE=R9.871008.Z5 BUREAUCRACY=R160.DEPROT.Z4 CUTTHROATS=R25.DEPROT.Z3 DEADLINE=R28.850129.Z3 ENCHANTER=R29.860820.Z3 HGTTG=R60.861002.Z3 HOLLYWOOD=R37.861215.Z3 INFIDEL=R22.830916.Z3 LGOP=R59.860730.Z3 LURKING.HORROR=R221.DEPROT.Z3 MINI.ZORK=R34.871124.Z3 MINI.ZORK.2=R2.871123.Z3 MOONMIST=R13.880501.Z3 NORD.AND.BERT=R20.870722.Z4 PLANETFALL=R42.190616.Z5 PLUNDERED=R26.870730.Z3 SEASTALKER=R18.850919.Z3 SHERLOCK=R4.880324.Z5 SORCERER=R18.DEPROT.Z3 SPELLBREAKER=R87.DEPROT.Z3 STARCROSS=R18.DEPROT.Z3 STATIONFALL=R107.DEPROT.Z3 SUSPECT=R18.850222.Z3 SUSPENDED=R8.830521.Z3 TRINITY=R15.870628.Z4 WISHBRINGER=R69.850920.Z3 WITNESS=R23.840925.Z3 ZORK.I=R119.880429.Z3 ZORK.II=R48.840904.Z3 ZORK.III=R25.860811.Z3 ZORK.ZERO=R153.880510.Z5 ZTUU=R16.970828.Z5 [eof] \ No newline at end of file +# Pitch Dark preferences file # Do not edit by hand. # Or do. I'm a comment, not a cop. # value=0|1 FORCE40COLUMNS=0 FORCEUPPERCASE=0 SCRIPTTOFILE=0 AUTOSCRIPT=0 # value=game directory LASTPLAYED=ZORK.I # key=game directory, value=filename of selected version AMFV=R79.DEPROT.Z4 BALLYHOO=R99.861014.Z3 BEYOND.ZORK=R60.880610.Z5 BORDER.ZONE=R9.871008.Z5 BUREAUCRACY=R160.DEPROT.Z4 CUTTHROATS=R25.DEPROT.Z3 DEADLINE=R28.850129.Z3 ENCHANTER=R29.860820.Z3 HGTTG=R60.861002.Z3 HOLLYWOOD=R37.861215.Z3 INFIDEL=R22.830916.Z3 LGOP=R59.860730.Z3 LURKING.HORROR=R221.DEPROT.Z3 MINI.ZORK=R34.871124.Z3 MINI.ZORK.2=R15.210307.Z3 MOONMIST=R13.880501.Z3 NORD.AND.BERT=R20.870722.Z4 PLANETFALL=R42.190616.Z5 PLUNDERED=R26.870730.Z3 SEASTALKER=R18.850919.Z3 SHERLOCK=R4.880324.Z5 SORCERER=R18.DEPROT.Z3 SPELLBREAKER=R87.DEPROT.Z3 STARCROSS=R18.DEPROT.Z3 STATIONFALL=R107.DEPROT.Z3 SUSPECT=R18.850222.Z3 SUSPENDED=R8.830521.Z3 TRINITY=R15.870628.Z4 WISHBRINGER=R69.850920.Z3 WITNESS=R23.840925.Z3 ZORK.I=R119.880429.Z3 ZORK.II=R48.840904.Z3 ZORK.III=R25.860811.Z3 ZORK.ZERO=R153.880510.Z5 ZTUU=R16.970828.Z5 [eof] \ No newline at end of file diff --git a/res/Pitch Dark.master games collection.do.not.edit.hdv b/res/Pitch Dark.master games collection.do.not.edit.hdv deleted file mode 100644 index 6bf791f..0000000 Binary files a/res/Pitch Dark.master games collection.do.not.edit.hdv and /dev/null differ diff --git a/res/Z/AMFV/R77.850814.SAV#040000 b/res/Z/AMFV/R77.850814.SAV#040000 new file mode 100644 index 0000000..34366c0 Binary files /dev/null and b/res/Z/AMFV/R77.850814.SAV#040000 differ diff --git a/res/Z/AMFV/R77.850814.Z4#f58004 b/res/Z/AMFV/R77.850814.Z4#f58004 new file mode 100644 index 0000000..05e2518 Binary files /dev/null and b/res/Z/AMFV/R77.850814.Z4#f58004 differ diff --git a/res/Z/AMFV/R77.DEPROT.SAV#040000 b/res/Z/AMFV/R77.DEPROT.SAV#040000 new file mode 100644 index 0000000..34366c0 Binary files /dev/null and b/res/Z/AMFV/R77.DEPROT.SAV#040000 differ diff --git a/res/Z/AMFV/R77.DEPROT.Z4#f58004 b/res/Z/AMFV/R77.DEPROT.Z4#f58004 new file mode 100644 index 0000000..5a5eb63 Binary files /dev/null and b/res/Z/AMFV/R77.DEPROT.Z4#f58004 differ diff --git a/res/Z/AMFV/R79.851122.SAV#040000 b/res/Z/AMFV/R79.851122.SAV#040000 new file mode 100644 index 0000000..34366c0 Binary files /dev/null and b/res/Z/AMFV/R79.851122.SAV#040000 differ diff --git a/res/Z/AMFV/R79.851122.Z4#f58004 b/res/Z/AMFV/R79.851122.Z4#f58004 new file mode 100644 index 0000000..d1a4fb1 Binary files /dev/null and b/res/Z/AMFV/R79.851122.Z4#f58004 differ diff --git a/res/Z/AMFV/R79.DEPROT.SAV#040000 b/res/Z/AMFV/R79.DEPROT.SAV#040000 new file mode 100644 index 0000000..34366c0 Binary files /dev/null and b/res/Z/AMFV/R79.DEPROT.SAV#040000 differ diff --git a/res/Z/AMFV/R79.DEPROT.Z4#f58004 b/res/Z/AMFV/R79.DEPROT.Z4#f58004 new file mode 100644 index 0000000..191a19b Binary files /dev/null and b/res/Z/AMFV/R79.DEPROT.Z4#f58004 differ diff --git a/res/Z/BALLYHOO/R97.851218.Z3#f58003 b/res/Z/BALLYHOO/R97.851218.Z3#f58003 new file mode 100644 index 0000000..5b6fb02 Binary files /dev/null and b/res/Z/BALLYHOO/R97.851218.Z3#f58003 differ diff --git a/res/Z/BALLYHOO/R99.861014.Z3#f58003 b/res/Z/BALLYHOO/R99.861014.Z3#f58003 new file mode 100644 index 0000000..2384f4c Binary files /dev/null and b/res/Z/BALLYHOO/R99.861014.Z3#f58003 differ diff --git a/res/Z/BEYOND.ZORK/R47.870915.SAV#040000 b/res/Z/BEYOND.ZORK/R47.870915.SAV#040000 new file mode 100644 index 0000000..34366c0 Binary files /dev/null and b/res/Z/BEYOND.ZORK/R47.870915.SAV#040000 differ diff --git a/res/Z/BEYOND.ZORK/R47.870915.Z5#f58055 b/res/Z/BEYOND.ZORK/R47.870915.Z5#f58055 new file mode 100644 index 0000000..f37abd0 Binary files /dev/null and b/res/Z/BEYOND.ZORK/R47.870915.Z5#f58055 differ diff --git a/res/Z/BEYOND.ZORK/R49.870917.SAV#040000 b/res/Z/BEYOND.ZORK/R49.870917.SAV#040000 new file mode 100644 index 0000000..34366c0 Binary files /dev/null and b/res/Z/BEYOND.ZORK/R49.870917.SAV#040000 differ diff --git a/res/Z/BEYOND.ZORK/R49.870917.Z5#f58055 b/res/Z/BEYOND.ZORK/R49.870917.Z5#f58055 new file mode 100644 index 0000000..e176a6b Binary files /dev/null and b/res/Z/BEYOND.ZORK/R49.870917.Z5#f58055 differ diff --git a/res/Z/BEYOND.ZORK/R51.870923.SAV#040000 b/res/Z/BEYOND.ZORK/R51.870923.SAV#040000 new file mode 100644 index 0000000..34366c0 Binary files /dev/null and b/res/Z/BEYOND.ZORK/R51.870923.SAV#040000 differ diff --git a/res/Z/BEYOND.ZORK/R51.870923.Z5#f58055 b/res/Z/BEYOND.ZORK/R51.870923.Z5#f58055 new file mode 100644 index 0000000..8f5f373 Binary files /dev/null and b/res/Z/BEYOND.ZORK/R51.870923.Z5#f58055 differ diff --git a/res/Z/BEYOND.ZORK/R57.871221.SAV#040000 b/res/Z/BEYOND.ZORK/R57.871221.SAV#040000 new file mode 100644 index 0000000..34366c0 Binary files /dev/null and b/res/Z/BEYOND.ZORK/R57.871221.SAV#040000 differ diff --git a/res/Z/BEYOND.ZORK/R57.871221.Z5#f58055 b/res/Z/BEYOND.ZORK/R57.871221.Z5#f58055 new file mode 100644 index 0000000..30d7905 Binary files /dev/null and b/res/Z/BEYOND.ZORK/R57.871221.Z5#f58055 differ diff --git a/res/Z/BEYOND.ZORK/R60.880610.SAV#040000 b/res/Z/BEYOND.ZORK/R60.880610.SAV#040000 new file mode 100644 index 0000000..a5d3587 Binary files /dev/null and b/res/Z/BEYOND.ZORK/R60.880610.SAV#040000 differ diff --git a/res/Z/BEYOND.ZORK/R60.880610.Z5#f58055 b/res/Z/BEYOND.ZORK/R60.880610.Z5#f58055 new file mode 100644 index 0000000..c8e61a4 Binary files /dev/null and b/res/Z/BEYOND.ZORK/R60.880610.Z5#f58055 differ diff --git a/res/Z/BORDER.ZONE/R9.871008.SAV#040000 b/res/Z/BORDER.ZONE/R9.871008.SAV#040000 new file mode 100644 index 0000000..34366c0 Binary files /dev/null and b/res/Z/BORDER.ZONE/R9.871008.SAV#040000 differ diff --git a/res/Z/BORDER.ZONE/R9.871008.Z5#f58005 b/res/Z/BORDER.ZONE/R9.871008.Z5#f58005 new file mode 100644 index 0000000..8b77309 Binary files /dev/null and b/res/Z/BORDER.ZONE/R9.871008.Z5#f58005 differ diff --git a/res/Z/BUREAUCRACY/R116.870602.SAV#040000 b/res/Z/BUREAUCRACY/R116.870602.SAV#040000 new file mode 100644 index 0000000..34366c0 Binary files /dev/null and b/res/Z/BUREAUCRACY/R116.870602.SAV#040000 differ diff --git a/res/Z/BUREAUCRACY/R116.870602.Z4#f58004 b/res/Z/BUREAUCRACY/R116.870602.Z4#f58004 new file mode 100644 index 0000000..d52069a Binary files /dev/null and b/res/Z/BUREAUCRACY/R116.870602.Z4#f58004 differ diff --git a/res/Z/BUREAUCRACY/R116.DEPROT.SAV#040000 b/res/Z/BUREAUCRACY/R116.DEPROT.SAV#040000 new file mode 100644 index 0000000..34366c0 Binary files /dev/null and b/res/Z/BUREAUCRACY/R116.DEPROT.SAV#040000 differ diff --git a/res/Z/BUREAUCRACY/R116.DEPROT.Z4#f58004 b/res/Z/BUREAUCRACY/R116.DEPROT.Z4#f58004 new file mode 100644 index 0000000..573bb1a Binary files /dev/null and b/res/Z/BUREAUCRACY/R116.DEPROT.Z4#f58004 differ diff --git a/res/Z/BUREAUCRACY/R160.880521.SAV#040000 b/res/Z/BUREAUCRACY/R160.880521.SAV#040000 new file mode 100644 index 0000000..a5d3587 Binary files /dev/null and b/res/Z/BUREAUCRACY/R160.880521.SAV#040000 differ diff --git a/res/Z/BUREAUCRACY/R160.880521.Z4#f58004 b/res/Z/BUREAUCRACY/R160.880521.Z4#f58004 new file mode 100644 index 0000000..dd47809 Binary files /dev/null and b/res/Z/BUREAUCRACY/R160.880521.Z4#f58004 differ diff --git a/res/Z/BUREAUCRACY/R160.DEPROT.SAV#040000 b/res/Z/BUREAUCRACY/R160.DEPROT.SAV#040000 new file mode 100644 index 0000000..a5d3587 Binary files /dev/null and b/res/Z/BUREAUCRACY/R160.DEPROT.SAV#040000 differ diff --git a/res/Z/BUREAUCRACY/R160.DEPROT.Z4#f58004 b/res/Z/BUREAUCRACY/R160.DEPROT.Z4#f58004 new file mode 100644 index 0000000..ad023a1 Binary files /dev/null and b/res/Z/BUREAUCRACY/R160.DEPROT.Z4#f58004 differ diff --git a/res/Z/BUREAUCRACY/R86.870212.SAV#040000 b/res/Z/BUREAUCRACY/R86.870212.SAV#040000 new file mode 100644 index 0000000..34366c0 Binary files /dev/null and b/res/Z/BUREAUCRACY/R86.870212.SAV#040000 differ diff --git a/res/Z/BUREAUCRACY/R86.870212.Z4#f58004 b/res/Z/BUREAUCRACY/R86.870212.Z4#f58004 new file mode 100644 index 0000000..1fe5e37 Binary files /dev/null and b/res/Z/BUREAUCRACY/R86.870212.Z4#f58004 differ diff --git a/res/Z/BUREAUCRACY/R86.DEPROT.SAV#040000 b/res/Z/BUREAUCRACY/R86.DEPROT.SAV#040000 new file mode 100644 index 0000000..34366c0 Binary files /dev/null and b/res/Z/BUREAUCRACY/R86.DEPROT.SAV#040000 differ diff --git a/res/Z/BUREAUCRACY/R86.DEPROT.Z4#f58004 b/res/Z/BUREAUCRACY/R86.DEPROT.Z4#f58004 new file mode 100644 index 0000000..a4e21fa Binary files /dev/null and b/res/Z/BUREAUCRACY/R86.DEPROT.Z4#f58004 differ diff --git a/res/Z/CUTTHROATS/R23.840809.Z3#f58003 b/res/Z/CUTTHROATS/R23.840809.Z3#f58003 new file mode 100644 index 0000000..a9d33fc Binary files /dev/null and b/res/Z/CUTTHROATS/R23.840809.Z3#f58003 differ diff --git a/res/Z/CUTTHROATS/R23.DEPROT.Z3#f58003 b/res/Z/CUTTHROATS/R23.DEPROT.Z3#f58003 new file mode 100644 index 0000000..c629408 Binary files /dev/null and b/res/Z/CUTTHROATS/R23.DEPROT.Z3#f58003 differ diff --git a/res/Z/CUTTHROATS/R25.840917.Z3#f58003 b/res/Z/CUTTHROATS/R25.840917.Z3#f58003 new file mode 100644 index 0000000..ffd0243 Binary files /dev/null and b/res/Z/CUTTHROATS/R25.840917.Z3#f58003 differ diff --git a/res/Z/CUTTHROATS/R25.DEPROT.Z3#f58003 b/res/Z/CUTTHROATS/R25.DEPROT.Z3#f58003 new file mode 100644 index 0000000..98d23a0 Binary files /dev/null and b/res/Z/CUTTHROATS/R25.DEPROT.Z3#f58003 differ diff --git a/res/Z/DEADLINE/R18.820311.Z3#f58003 b/res/Z/DEADLINE/R18.820311.Z3#f58003 new file mode 100644 index 0000000..191e4bf Binary files /dev/null and b/res/Z/DEADLINE/R18.820311.Z3#f58003 differ diff --git a/res/Z/DEADLINE/R19.820427.Z3#f58003 b/res/Z/DEADLINE/R19.820427.Z3#f58003 new file mode 100644 index 0000000..749f713 Binary files /dev/null and b/res/Z/DEADLINE/R19.820427.Z3#f58003 differ diff --git a/res/Z/DEADLINE/R21.820512.Z3#f58003 b/res/Z/DEADLINE/R21.820512.Z3#f58003 new file mode 100644 index 0000000..f562587 Binary files /dev/null and b/res/Z/DEADLINE/R21.820512.Z3#f58003 differ diff --git a/res/Z/DEADLINE/R22.820809.Z3#f58003 b/res/Z/DEADLINE/R22.820809.Z3#f58003 new file mode 100644 index 0000000..8da606a Binary files /dev/null and b/res/Z/DEADLINE/R22.820809.Z3#f58003 differ diff --git a/res/Z/DEADLINE/R26.821108.Z3#f58003 b/res/Z/DEADLINE/R26.821108.Z3#f58003 new file mode 100644 index 0000000..1bd8993 Binary files /dev/null and b/res/Z/DEADLINE/R26.821108.Z3#f58003 differ diff --git a/res/Z/DEADLINE/R27.831005.Z3#f58003 b/res/Z/DEADLINE/R27.831005.Z3#f58003 new file mode 100644 index 0000000..ebbe260 Binary files /dev/null and b/res/Z/DEADLINE/R27.831005.Z3#f58003 differ diff --git a/res/Z/DEADLINE/R28.850129.Z3#f58003 b/res/Z/DEADLINE/R28.850129.Z3#f58003 new file mode 100644 index 0000000..f9468bd Binary files /dev/null and b/res/Z/DEADLINE/R28.850129.Z3#f58003 differ diff --git a/res/Z/ENCHANTER/R10.830810.Z3#f58003 b/res/Z/ENCHANTER/R10.830810.Z3#f58003 new file mode 100644 index 0000000..bdd376f Binary files /dev/null and b/res/Z/ENCHANTER/R10.830810.Z3#f58003 differ diff --git a/res/Z/ENCHANTER/R15.831107.Z3#f58003 b/res/Z/ENCHANTER/R15.831107.Z3#f58003 new file mode 100644 index 0000000..d2d2da9 Binary files /dev/null and b/res/Z/ENCHANTER/R15.831107.Z3#f58003 differ diff --git a/res/Z/ENCHANTER/R16.831118.Z3#f58003 b/res/Z/ENCHANTER/R16.831118.Z3#f58003 new file mode 100644 index 0000000..59af0f5 Binary files /dev/null and b/res/Z/ENCHANTER/R16.831118.Z3#f58003 differ diff --git a/res/Z/ENCHANTER/R24.851118.Z3#f58003 b/res/Z/ENCHANTER/R24.851118.Z3#f58003 new file mode 100644 index 0000000..abe20b2 Binary files /dev/null and b/res/Z/ENCHANTER/R24.851118.Z3#f58003 differ diff --git a/res/Z/ENCHANTER/R29.860820.Z3#f58003 b/res/Z/ENCHANTER/R29.860820.Z3#f58003 new file mode 100644 index 0000000..749a4d9 Binary files /dev/null and b/res/Z/ENCHANTER/R29.860820.Z3#f58003 differ diff --git a/res/Z/HGTTG/R31.871119.SAV#040000 b/res/Z/HGTTG/R31.871119.SAV#040000 new file mode 100644 index 0000000..34366c0 Binary files /dev/null and b/res/Z/HGTTG/R31.871119.SAV#040000 differ diff --git a/res/Z/HGTTG/R31.871119.Z5#f58005 b/res/Z/HGTTG/R31.871119.Z5#f58005 new file mode 100644 index 0000000..5387993 Binary files /dev/null and b/res/Z/HGTTG/R31.871119.Z5#f58005 differ diff --git a/res/Z/HGTTG/R47.840914.Z3#f58003 b/res/Z/HGTTG/R47.840914.Z3#f58003 new file mode 100644 index 0000000..1e96f4b Binary files /dev/null and b/res/Z/HGTTG/R47.840914.Z3#f58003 differ diff --git a/res/Z/HGTTG/R56.841221.Z3#f58003 b/res/Z/HGTTG/R56.841221.Z3#f58003 new file mode 100644 index 0000000..139fbec Binary files /dev/null and b/res/Z/HGTTG/R56.841221.Z3#f58003 differ diff --git a/res/Z/HGTTG/R58.851002.Z3#f58003 b/res/Z/HGTTG/R58.851002.Z3#f58003 new file mode 100644 index 0000000..a82d712 Binary files /dev/null and b/res/Z/HGTTG/R58.851002.Z3#f58003 differ diff --git a/res/Z/HGTTG/R59.851108.Z3#f58003 b/res/Z/HGTTG/R59.851108.Z3#f58003 new file mode 100644 index 0000000..66e93cb Binary files /dev/null and b/res/Z/HGTTG/R59.851108.Z3#f58003 differ diff --git a/res/Z/HGTTG/R60.861002.Z3#f58003 b/res/Z/HGTTG/R60.861002.Z3#f58003 new file mode 100644 index 0000000..a581959 Binary files /dev/null and b/res/Z/HGTTG/R60.861002.Z3#f58003 differ diff --git a/res/Z/HOLLYWOOD/R37.861215.Z3#f58003 b/res/Z/HOLLYWOOD/R37.861215.Z3#f58003 new file mode 100644 index 0000000..9652a64 Binary files /dev/null and b/res/Z/HOLLYWOOD/R37.861215.Z3#f58003 differ diff --git a/res/Z/INFIDEL/R22.830916.Z3#f58003 b/res/Z/INFIDEL/R22.830916.Z3#f58003 new file mode 100644 index 0000000..c31b145 Binary files /dev/null and b/res/Z/INFIDEL/R22.830916.Z3#f58003 differ diff --git a/res/Z/LGOP/R4.880405.SAV#040000 b/res/Z/LGOP/R4.880405.SAV#040000 new file mode 100644 index 0000000..34366c0 Binary files /dev/null and b/res/Z/LGOP/R4.880405.SAV#040000 differ diff --git a/res/Z/LGOP/R4.880405.Z5#f58005 b/res/Z/LGOP/R4.880405.Z5#f58005 new file mode 100644 index 0000000..1278925 Binary files /dev/null and b/res/Z/LGOP/R4.880405.Z5#f58005 differ diff --git a/res/Z/LGOP/R50.860711.Z3#f58003 b/res/Z/LGOP/R50.860711.Z3#f58003 new file mode 100644 index 0000000..5026260 Binary files /dev/null and b/res/Z/LGOP/R50.860711.Z3#f58003 differ diff --git a/res/Z/LGOP/R59.860730.Z3#f58003 b/res/Z/LGOP/R59.860730.Z3#f58003 new file mode 100644 index 0000000..76c5ea7 Binary files /dev/null and b/res/Z/LGOP/R59.860730.Z3#f58003 differ diff --git a/res/Z/LURKING.HORROR/R203.870506.Z3#f58003 b/res/Z/LURKING.HORROR/R203.870506.Z3#f58003 new file mode 100644 index 0000000..a03dd60 Binary files /dev/null and b/res/Z/LURKING.HORROR/R203.870506.Z3#f58003 differ diff --git a/res/Z/LURKING.HORROR/R203.DEPROT.Z3#f58003 b/res/Z/LURKING.HORROR/R203.DEPROT.Z3#f58003 new file mode 100644 index 0000000..e4d1eef Binary files /dev/null and b/res/Z/LURKING.HORROR/R203.DEPROT.Z3#f58003 differ diff --git a/res/Z/LURKING.HORROR/R219.870912.Z3#f58003 b/res/Z/LURKING.HORROR/R219.870912.Z3#f58003 new file mode 100644 index 0000000..1122615 Binary files /dev/null and b/res/Z/LURKING.HORROR/R219.870912.Z3#f58003 differ diff --git a/res/Z/LURKING.HORROR/R219.DEPROT.Z3#f58003 b/res/Z/LURKING.HORROR/R219.DEPROT.Z3#f58003 new file mode 100644 index 0000000..1da08c4 Binary files /dev/null and b/res/Z/LURKING.HORROR/R219.DEPROT.Z3#f58003 differ diff --git a/res/Z/LURKING.HORROR/R221.870918.Z3#f58003 b/res/Z/LURKING.HORROR/R221.870918.Z3#f58003 new file mode 100644 index 0000000..d671dd6 Binary files /dev/null and b/res/Z/LURKING.HORROR/R221.870918.Z3#f58003 differ diff --git a/res/Z/LURKING.HORROR/R221.DEPROT.Z3#f58003 b/res/Z/LURKING.HORROR/R221.DEPROT.Z3#f58003 new file mode 100644 index 0000000..06051d9 Binary files /dev/null and b/res/Z/LURKING.HORROR/R221.DEPROT.Z3#f58003 differ diff --git a/res/Z/MINI.ZORK.2/R15.210307.Z3#f58003 b/res/Z/MINI.ZORK.2/R15.210307.Z3#f58003 new file mode 100644 index 0000000..f9597a3 Binary files /dev/null and b/res/Z/MINI.ZORK.2/R15.210307.Z3#f58003 differ diff --git a/res/Z/MINI.ZORK.2/R2.871123.Z3#f58003 b/res/Z/MINI.ZORK.2/R2.871123.Z3#f58003 new file mode 100644 index 0000000..354ccbb Binary files /dev/null and b/res/Z/MINI.ZORK.2/R2.871123.Z3#f58003 differ diff --git a/res/Z/MINI.ZORK/R2.840207.Z3#f58003 b/res/Z/MINI.ZORK/R2.840207.Z3#f58003 new file mode 100644 index 0000000..7e59ba6 Binary files /dev/null and b/res/Z/MINI.ZORK/R2.840207.Z3#f58003 differ diff --git a/res/Z/MINI.ZORK/R34.871124.Z3#f58003 b/res/Z/MINI.ZORK/R34.871124.Z3#f58003 new file mode 100644 index 0000000..da38b5a Binary files /dev/null and b/res/Z/MINI.ZORK/R34.871124.Z3#f58003 differ diff --git a/res/Z/MOONMIST/R13.880501.Z3#f58003 b/res/Z/MOONMIST/R13.880501.Z3#f58003 new file mode 100644 index 0000000..127ff94 Binary files /dev/null and b/res/Z/MOONMIST/R13.880501.Z3#f58003 differ diff --git a/res/Z/MOONMIST/R4.860918.Z3#f58003 b/res/Z/MOONMIST/R4.860918.Z3#f58003 new file mode 100644 index 0000000..6ad4c93 Binary files /dev/null and b/res/Z/MOONMIST/R4.860918.Z3#f58003 differ diff --git a/res/Z/MOONMIST/R9.861022.Z3#f58003 b/res/Z/MOONMIST/R9.861022.Z3#f58003 new file mode 100644 index 0000000..0948e50 Binary files /dev/null and b/res/Z/MOONMIST/R9.861022.Z3#f58003 differ diff --git a/res/Z/NORD.AND.BERT/R19.870722.SAV#040000 b/res/Z/NORD.AND.BERT/R19.870722.SAV#040000 new file mode 100644 index 0000000..34366c0 Binary files /dev/null and b/res/Z/NORD.AND.BERT/R19.870722.SAV#040000 differ diff --git a/res/Z/NORD.AND.BERT/R19.870722.Z4#f58004 b/res/Z/NORD.AND.BERT/R19.870722.Z4#f58004 new file mode 100644 index 0000000..1c1a712 Binary files /dev/null and b/res/Z/NORD.AND.BERT/R19.870722.Z4#f58004 differ diff --git a/res/Z/NORD.AND.BERT/R20.870722.SAV#040000 b/res/Z/NORD.AND.BERT/R20.870722.SAV#040000 new file mode 100644 index 0000000..a5d3587 Binary files /dev/null and b/res/Z/NORD.AND.BERT/R20.870722.SAV#040000 differ diff --git a/res/Z/NORD.AND.BERT/R20.870722.Z4#f58004 b/res/Z/NORD.AND.BERT/R20.870722.Z4#f58004 new file mode 100644 index 0000000..62a9921 Binary files /dev/null and b/res/Z/NORD.AND.BERT/R20.870722.Z4#f58004 differ diff --git a/res/Z/PLANETFALL/R10.880531.SAV#040000 b/res/Z/PLANETFALL/R10.880531.SAV#040000 new file mode 100644 index 0000000..34366c0 Binary files /dev/null and b/res/Z/PLANETFALL/R10.880531.SAV#040000 differ diff --git a/res/Z/PLANETFALL/R10.880531.Z5#f58005 b/res/Z/PLANETFALL/R10.880531.Z5#f58005 new file mode 100644 index 0000000..567e257 Binary files /dev/null and b/res/Z/PLANETFALL/R10.880531.Z5#f58005 differ diff --git a/res/Z/PLANETFALL/R20.830708.Z3#f58003 b/res/Z/PLANETFALL/R20.830708.Z3#f58003 new file mode 100644 index 0000000..6b301db Binary files /dev/null and b/res/Z/PLANETFALL/R20.830708.Z3#f58003 differ diff --git a/res/Z/PLANETFALL/R26.831014.Z3#f58003 b/res/Z/PLANETFALL/R26.831014.Z3#f58003 new file mode 100644 index 0000000..99a87c4 Binary files /dev/null and b/res/Z/PLANETFALL/R26.831014.Z3#f58003 differ diff --git a/res/Z/PLANETFALL/R29.840118.Z3#f58003 b/res/Z/PLANETFALL/R29.840118.Z3#f58003 new file mode 100644 index 0000000..7b75738 Binary files /dev/null and b/res/Z/PLANETFALL/R29.840118.Z3#f58003 differ diff --git a/res/Z/PLANETFALL/R37.851003.Z3#f58003 b/res/Z/PLANETFALL/R37.851003.Z3#f58003 new file mode 100644 index 0000000..c9d3489 Binary files /dev/null and b/res/Z/PLANETFALL/R37.851003.Z3#f58003 differ diff --git a/res/Z/PLANETFALL/R39.880501.Z3#f58003 b/res/Z/PLANETFALL/R39.880501.Z3#f58003 new file mode 100644 index 0000000..60b3676 Binary files /dev/null and b/res/Z/PLANETFALL/R39.880501.Z3#f58003 differ diff --git a/res/Z/PLANETFALL/R42.190616.SAV#040000 b/res/Z/PLANETFALL/R42.190616.SAV#040000 new file mode 100644 index 0000000..b286fa0 Binary files /dev/null and b/res/Z/PLANETFALL/R42.190616.SAV#040000 differ diff --git a/res/Z/PLANETFALL/R42.190616.Z5#f58005 b/res/Z/PLANETFALL/R42.190616.Z5#f58005 new file mode 100644 index 0000000..c2f3c0a Binary files /dev/null and b/res/Z/PLANETFALL/R42.190616.Z5#f58005 differ diff --git a/res/Z/PLUNDERED/R26.870730.Z3#f58003 b/res/Z/PLUNDERED/R26.870730.Z3#f58003 new file mode 100644 index 0000000..b5e076d Binary files /dev/null and b/res/Z/PLUNDERED/R26.870730.Z3#f58003 differ diff --git a/res/Z/SEASTALKER/R15.840501.Z3#f58003 b/res/Z/SEASTALKER/R15.840501.Z3#f58003 new file mode 100644 index 0000000..9fc5580 Binary files /dev/null and b/res/Z/SEASTALKER/R15.840501.Z3#f58003 differ diff --git a/res/Z/SEASTALKER/R16A.850515.Z3#f58003 b/res/Z/SEASTALKER/R16A.850515.Z3#f58003 new file mode 100644 index 0000000..8917f76 Binary files /dev/null and b/res/Z/SEASTALKER/R16A.850515.Z3#f58003 differ diff --git a/res/Z/SEASTALKER/R16B.850603.Z3#f58003 b/res/Z/SEASTALKER/R16B.850603.Z3#f58003 new file mode 100644 index 0000000..a5d7c42 Binary files /dev/null and b/res/Z/SEASTALKER/R16B.850603.Z3#f58003 differ diff --git a/res/Z/SEASTALKER/R18.850919.Z3#f58003 b/res/Z/SEASTALKER/R18.850919.Z3#f58003 new file mode 100644 index 0000000..bd4992a Binary files /dev/null and b/res/Z/SEASTALKER/R18.850919.Z3#f58003 differ diff --git a/res/Z/SEASTALKER/R86.840320.Z3#f58003 b/res/Z/SEASTALKER/R86.840320.Z3#f58003 new file mode 100644 index 0000000..a18bbd3 Binary files /dev/null and b/res/Z/SEASTALKER/R86.840320.Z3#f58003 differ diff --git a/res/Z/SHERLOCK/R21.871214.SAV#040000 b/res/Z/SHERLOCK/R21.871214.SAV#040000 new file mode 100644 index 0000000..34366c0 Binary files /dev/null and b/res/Z/SHERLOCK/R21.871214.SAV#040000 differ diff --git a/res/Z/SHERLOCK/R21.871214.Z5#f58005 b/res/Z/SHERLOCK/R21.871214.Z5#f58005 new file mode 100644 index 0000000..571e5a5 Binary files /dev/null and b/res/Z/SHERLOCK/R21.871214.Z5#f58005 differ diff --git a/res/Z/SHERLOCK/R22.880112.SAV#040000 b/res/Z/SHERLOCK/R22.880112.SAV#040000 new file mode 100644 index 0000000..a5d3587 Binary files /dev/null and b/res/Z/SHERLOCK/R22.880112.SAV#040000 differ diff --git a/res/Z/SHERLOCK/R22.880112.Z5#f58005 b/res/Z/SHERLOCK/R22.880112.Z5#f58005 new file mode 100644 index 0000000..dc44297 Binary files /dev/null and b/res/Z/SHERLOCK/R22.880112.Z5#f58005 differ diff --git a/res/Z/SHERLOCK/R26.880127.SAV#040000 b/res/Z/SHERLOCK/R26.880127.SAV#040000 new file mode 100644 index 0000000..34366c0 Binary files /dev/null and b/res/Z/SHERLOCK/R26.880127.SAV#040000 differ diff --git a/res/Z/SHERLOCK/R26.880127.Z5#f58005 b/res/Z/SHERLOCK/R26.880127.Z5#f58005 new file mode 100644 index 0000000..2f87cd8 Binary files /dev/null and b/res/Z/SHERLOCK/R26.880127.Z5#f58005 differ diff --git a/res/Z/SHERLOCK/R4.880324.SAV#040000 b/res/Z/SHERLOCK/R4.880324.SAV#040000 new file mode 100644 index 0000000..a5d3587 Binary files /dev/null and b/res/Z/SHERLOCK/R4.880324.SAV#040000 differ diff --git a/res/Z/SHERLOCK/R4.880324.Z5#f58005 b/res/Z/SHERLOCK/R4.880324.Z5#f58005 new file mode 100644 index 0000000..5c721a9 Binary files /dev/null and b/res/Z/SHERLOCK/R4.880324.Z5#f58005 differ diff --git a/res/Z/SORCERER/R13.851021.Z3#f58003 b/res/Z/SORCERER/R13.851021.Z3#f58003 new file mode 100644 index 0000000..30179b7 Binary files /dev/null and b/res/Z/SORCERER/R13.851021.Z3#f58003 differ diff --git a/res/Z/SORCERER/R13.DEPROT.Z3#f58003 b/res/Z/SORCERER/R13.DEPROT.Z3#f58003 new file mode 100644 index 0000000..8185f87 Binary files /dev/null and b/res/Z/SORCERER/R13.DEPROT.Z3#f58003 differ diff --git a/res/Z/SORCERER/R15.851108.Z3#f58003 b/res/Z/SORCERER/R15.851108.Z3#f58003 new file mode 100644 index 0000000..7fd1702 Binary files /dev/null and b/res/Z/SORCERER/R15.851108.Z3#f58003 differ diff --git a/res/Z/SORCERER/R15.DEPROT.Z3#f58003 b/res/Z/SORCERER/R15.DEPROT.Z3#f58003 new file mode 100644 index 0000000..1ffb6e1 Binary files /dev/null and b/res/Z/SORCERER/R15.DEPROT.Z3#f58003 differ diff --git a/res/Z/SORCERER/R18.860904.Z3#f58003 b/res/Z/SORCERER/R18.860904.Z3#f58003 new file mode 100644 index 0000000..19df2e3 Binary files /dev/null and b/res/Z/SORCERER/R18.860904.Z3#f58003 differ diff --git a/res/Z/SORCERER/R18.DEPROT.Z3#f58003 b/res/Z/SORCERER/R18.DEPROT.Z3#f58003 new file mode 100644 index 0000000..d8306ec Binary files /dev/null and b/res/Z/SORCERER/R18.DEPROT.Z3#f58003 differ diff --git a/res/Z/SORCERER/R4.840131.Z3#f58003 b/res/Z/SORCERER/R4.840131.Z3#f58003 new file mode 100644 index 0000000..59bb3aa Binary files /dev/null and b/res/Z/SORCERER/R4.840131.Z3#f58003 differ diff --git a/res/Z/SORCERER/R4.DEPROT.Z3#f58003 b/res/Z/SORCERER/R4.DEPROT.Z3#f58003 new file mode 100644 index 0000000..2763f46 Binary files /dev/null and b/res/Z/SORCERER/R4.DEPROT.Z3#f58003 differ diff --git a/res/Z/SORCERER/R6.840508.Z3#f58003 b/res/Z/SORCERER/R6.840508.Z3#f58003 new file mode 100644 index 0000000..61a9bbe Binary files /dev/null and b/res/Z/SORCERER/R6.840508.Z3#f58003 differ diff --git a/res/Z/SORCERER/R6.DEPROT.Z3#f58003 b/res/Z/SORCERER/R6.DEPROT.Z3#f58003 new file mode 100644 index 0000000..ad6e7f7 Binary files /dev/null and b/res/Z/SORCERER/R6.DEPROT.Z3#f58003 differ diff --git a/res/Z/SPELLBREAKER/R63.850916.Z3#f58003 b/res/Z/SPELLBREAKER/R63.850916.Z3#f58003 new file mode 100644 index 0000000..ab860a9 Binary files /dev/null and b/res/Z/SPELLBREAKER/R63.850916.Z3#f58003 differ diff --git a/res/Z/SPELLBREAKER/R63.DEPROT.Z3#f58003 b/res/Z/SPELLBREAKER/R63.DEPROT.Z3#f58003 new file mode 100644 index 0000000..c10ab8b Binary files /dev/null and b/res/Z/SPELLBREAKER/R63.DEPROT.Z3#f58003 differ diff --git a/res/Z/SPELLBREAKER/R87.860904.Z3#f58003 b/res/Z/SPELLBREAKER/R87.860904.Z3#f58003 new file mode 100644 index 0000000..73e9379 Binary files /dev/null and b/res/Z/SPELLBREAKER/R87.860904.Z3#f58003 differ diff --git a/res/Z/SPELLBREAKER/R87.DEPROT.Z3#f58003 b/res/Z/SPELLBREAKER/R87.DEPROT.Z3#f58003 new file mode 100644 index 0000000..8e8cba6 Binary files /dev/null and b/res/Z/SPELLBREAKER/R87.DEPROT.Z3#f58003 differ diff --git a/res/Z/STARCROSS/R15.820901.Z3#f58003 b/res/Z/STARCROSS/R15.820901.Z3#f58003 new file mode 100644 index 0000000..2659964 Binary files /dev/null and b/res/Z/STARCROSS/R15.820901.Z3#f58003 differ diff --git a/res/Z/STARCROSS/R15.DEPROT.Z3#f58003 b/res/Z/STARCROSS/R15.DEPROT.Z3#f58003 new file mode 100644 index 0000000..bd93383 Binary files /dev/null and b/res/Z/STARCROSS/R15.DEPROT.Z3#f58003 differ diff --git a/res/Z/STARCROSS/R17.821021.Z3#f58003 b/res/Z/STARCROSS/R17.821021.Z3#f58003 new file mode 100644 index 0000000..2116b60 Binary files /dev/null and b/res/Z/STARCROSS/R17.821021.Z3#f58003 differ diff --git a/res/Z/STARCROSS/R17.DEPROT.Z3#f58003 b/res/Z/STARCROSS/R17.DEPROT.Z3#f58003 new file mode 100644 index 0000000..089d894 Binary files /dev/null and b/res/Z/STARCROSS/R17.DEPROT.Z3#f58003 differ diff --git a/res/Z/STARCROSS/R18.830114.Z3#f58003 b/res/Z/STARCROSS/R18.830114.Z3#f58003 new file mode 100644 index 0000000..3747371 Binary files /dev/null and b/res/Z/STARCROSS/R18.830114.Z3#f58003 differ diff --git a/res/Z/STARCROSS/R18.DEPROT.Z3#f58003 b/res/Z/STARCROSS/R18.DEPROT.Z3#f58003 new file mode 100644 index 0000000..9f326e1 Binary files /dev/null and b/res/Z/STARCROSS/R18.DEPROT.Z3#f58003 differ diff --git a/res/Z/STATIONFALL/R107.870430.Z3#f58003 b/res/Z/STATIONFALL/R107.870430.Z3#f58003 new file mode 100644 index 0000000..75e1eda Binary files /dev/null and b/res/Z/STATIONFALL/R107.870430.Z3#f58003 differ diff --git a/res/Z/STATIONFALL/R107.DEPROT.Z3#f58003 b/res/Z/STATIONFALL/R107.DEPROT.Z3#f58003 new file mode 100644 index 0000000..7281629 Binary files /dev/null and b/res/Z/STATIONFALL/R107.DEPROT.Z3#f58003 differ diff --git a/res/Z/SUSPECT/R14.841005.Z3#f58003 b/res/Z/SUSPECT/R14.841005.Z3#f58003 new file mode 100644 index 0000000..b40920e Binary files /dev/null and b/res/Z/SUSPECT/R14.841005.Z3#f58003 differ diff --git a/res/Z/SUSPECT/R18.850222.Z3#f58003 b/res/Z/SUSPECT/R18.850222.Z3#f58003 new file mode 100644 index 0000000..090a700 Binary files /dev/null and b/res/Z/SUSPECT/R18.850222.Z3#f58003 differ diff --git a/res/Z/SUSPENDED/R5.830222.Z3#f58003 b/res/Z/SUSPENDED/R5.830222.Z3#f58003 new file mode 100644 index 0000000..390fb1b Binary files /dev/null and b/res/Z/SUSPENDED/R5.830222.Z3#f58003 differ diff --git a/res/Z/SUSPENDED/R7.830419.Z3#f58003 b/res/Z/SUSPENDED/R7.830419.Z3#f58003 new file mode 100644 index 0000000..7c50e7b Binary files /dev/null and b/res/Z/SUSPENDED/R7.830419.Z3#f58003 differ diff --git a/res/Z/SUSPENDED/R8.830521.Z3#f58003 b/res/Z/SUSPENDED/R8.830521.Z3#f58003 new file mode 100644 index 0000000..a3075f8 Binary files /dev/null and b/res/Z/SUSPENDED/R8.830521.Z3#f58003 differ diff --git a/res/Z/TRINITY/R11.860509.SAV#040000 b/res/Z/TRINITY/R11.860509.SAV#040000 new file mode 100644 index 0000000..34366c0 Binary files /dev/null and b/res/Z/TRINITY/R11.860509.SAV#040000 differ diff --git a/res/Z/TRINITY/R11.860509.Z4#f58004 b/res/Z/TRINITY/R11.860509.Z4#f58004 new file mode 100644 index 0000000..3abeac2 Binary files /dev/null and b/res/Z/TRINITY/R11.860509.Z4#f58004 differ diff --git a/res/Z/TRINITY/R12.860926.SAV#040000 b/res/Z/TRINITY/R12.860926.SAV#040000 new file mode 100644 index 0000000..34366c0 Binary files /dev/null and b/res/Z/TRINITY/R12.860926.SAV#040000 differ diff --git a/res/Z/TRINITY/R12.860926.Z4#f58004 b/res/Z/TRINITY/R12.860926.Z4#f58004 new file mode 100644 index 0000000..b5dfa4a Binary files /dev/null and b/res/Z/TRINITY/R12.860926.Z4#f58004 differ diff --git a/res/Z/TRINITY/R15.870628.SAV#040000 b/res/Z/TRINITY/R15.870628.SAV#040000 new file mode 100644 index 0000000..a5d3587 Binary files /dev/null and b/res/Z/TRINITY/R15.870628.SAV#040000 differ diff --git a/res/Z/TRINITY/R15.870628.Z4#f58004 b/res/Z/TRINITY/R15.870628.Z4#f58004 new file mode 100644 index 0000000..8cb2001 Binary files /dev/null and b/res/Z/TRINITY/R15.870628.Z4#f58004 differ diff --git a/res/Z/WISHBRINGER/R23.880706.SAV#040000 b/res/Z/WISHBRINGER/R23.880706.SAV#040000 new file mode 100644 index 0000000..34366c0 Binary files /dev/null and b/res/Z/WISHBRINGER/R23.880706.SAV#040000 differ diff --git a/res/Z/WISHBRINGER/R23.880706.Z5#f58005 b/res/Z/WISHBRINGER/R23.880706.Z5#f58005 new file mode 100644 index 0000000..d718b11 Binary files /dev/null and b/res/Z/WISHBRINGER/R23.880706.Z5#f58005 differ diff --git a/res/Z/WISHBRINGER/R68.850501.Z3#f58003 b/res/Z/WISHBRINGER/R68.850501.Z3#f58003 new file mode 100644 index 0000000..748e343 Binary files /dev/null and b/res/Z/WISHBRINGER/R68.850501.Z3#f58003 differ diff --git a/res/Z/WISHBRINGER/R69.850920.Z3#f58003 b/res/Z/WISHBRINGER/R69.850920.Z3#f58003 new file mode 100644 index 0000000..b3cc3b4 Binary files /dev/null and b/res/Z/WISHBRINGER/R69.850920.Z3#f58003 differ diff --git a/res/Z/WITNESS/R13.830524.Z3#f58003 b/res/Z/WITNESS/R13.830524.Z3#f58003 new file mode 100644 index 0000000..bd86e8b Binary files /dev/null and b/res/Z/WITNESS/R13.830524.Z3#f58003 differ diff --git a/res/Z/WITNESS/R18.830910.Z3#f58003 b/res/Z/WITNESS/R18.830910.Z3#f58003 new file mode 100644 index 0000000..32cdfb2 Binary files /dev/null and b/res/Z/WITNESS/R18.830910.Z3#f58003 differ diff --git a/res/Z/WITNESS/R20.831119.Z3#f58003 b/res/Z/WITNESS/R20.831119.Z3#f58003 new file mode 100644 index 0000000..0a7be8f Binary files /dev/null and b/res/Z/WITNESS/R20.831119.Z3#f58003 differ diff --git a/res/Z/WITNESS/R21.831208.Z3#f58003 b/res/Z/WITNESS/R21.831208.Z3#f58003 new file mode 100644 index 0000000..85ebd25 Binary files /dev/null and b/res/Z/WITNESS/R21.831208.Z3#f58003 differ diff --git a/res/Z/WITNESS/R22.840924.Z3#f58003 b/res/Z/WITNESS/R22.840924.Z3#f58003 new file mode 100644 index 0000000..71b4659 Binary files /dev/null and b/res/Z/WITNESS/R22.840924.Z3#f58003 differ diff --git a/res/Z/WITNESS/R23.840925.Z3#f58003 b/res/Z/WITNESS/R23.840925.Z3#f58003 new file mode 100644 index 0000000..0a25f7a Binary files /dev/null and b/res/Z/WITNESS/R23.840925.Z3#f58003 differ diff --git a/res/Z/ZORK.I/R119.880429.Z3#f58003 b/res/Z/ZORK.I/R119.880429.Z3#f58003 new file mode 100644 index 0000000..e447402 Binary files /dev/null and b/res/Z/ZORK.I/R119.880429.Z3#f58003 differ diff --git a/res/Z/ZORK.I/R15.UG3AU5.Z2#f58002 b/res/Z/ZORK.I/R15.UG3AU5.Z2#f58002 new file mode 100644 index 0000000..4a1ba3a Binary files /dev/null and b/res/Z/ZORK.I/R15.UG3AU5.Z2#f58002 differ diff --git a/res/Z/ZORK.I/R2.AS000C.Z1#f58001 b/res/Z/ZORK.I/R2.AS000C.Z1#f58001 new file mode 100644 index 0000000..fb2b4f2 Binary files /dev/null and b/res/Z/ZORK.I/R2.AS000C.Z1#f58001 differ diff --git a/res/Z/ZORK.I/R20.000000.Z3#f58003 b/res/Z/ZORK.I/R20.000000.Z3#f58003 new file mode 100644 index 0000000..4f8d10b Binary files /dev/null and b/res/Z/ZORK.I/R20.000000.Z3#f58003 differ diff --git a/res/Z/ZORK.I/R23.820428.Z3#f58003 b/res/Z/ZORK.I/R23.820428.Z3#f58003 new file mode 100644 index 0000000..f5b584e Binary files /dev/null and b/res/Z/ZORK.I/R23.820428.Z3#f58003 differ diff --git a/res/Z/ZORK.I/R25.820515.Z3#f58003 b/res/Z/ZORK.I/R25.820515.Z3#f58003 new file mode 100644 index 0000000..81d1212 Binary files /dev/null and b/res/Z/ZORK.I/R25.820515.Z3#f58003 differ diff --git a/res/Z/ZORK.I/R26.820803.Z3#f58003 b/res/Z/ZORK.I/R26.820803.Z3#f58003 new file mode 100644 index 0000000..1c565d7 Binary files /dev/null and b/res/Z/ZORK.I/R26.820803.Z3#f58003 differ diff --git a/res/Z/ZORK.I/R28.821013.Z3#f58003 b/res/Z/ZORK.I/R28.821013.Z3#f58003 new file mode 100644 index 0000000..fdf78ce Binary files /dev/null and b/res/Z/ZORK.I/R28.821013.Z3#f58003 differ diff --git a/res/Z/ZORK.I/R30.830330.Z3#f58003 b/res/Z/ZORK.I/R30.830330.Z3#f58003 new file mode 100644 index 0000000..eff0dd7 Binary files /dev/null and b/res/Z/ZORK.I/R30.830330.Z3#f58003 differ diff --git a/res/Z/ZORK.I/R5.000000.Z1#f58001 b/res/Z/ZORK.I/R5.000000.Z1#f58001 new file mode 100644 index 0000000..c35d910 Binary files /dev/null and b/res/Z/ZORK.I/R5.000000.Z1#f58001 differ diff --git a/res/Z/ZORK.I/R52.871125.SAV#040000 b/res/Z/ZORK.I/R52.871125.SAV#040000 new file mode 100644 index 0000000..34366c0 Binary files /dev/null and b/res/Z/ZORK.I/R52.871125.SAV#040000 differ diff --git a/res/Z/ZORK.I/R52.871125.Z5#f58005 b/res/Z/ZORK.I/R52.871125.Z5#f58005 new file mode 100644 index 0000000..c6787f9 Binary files /dev/null and b/res/Z/ZORK.I/R52.871125.Z5#f58005 differ diff --git a/res/Z/ZORK.I/R75.830929.Z3#f58003 b/res/Z/ZORK.I/R75.830929.Z3#f58003 new file mode 100644 index 0000000..5b75595 Binary files /dev/null and b/res/Z/ZORK.I/R75.830929.Z3#f58003 differ diff --git a/res/Z/ZORK.I/R76.840509.Z3#f58003 b/res/Z/ZORK.I/R76.840509.Z3#f58003 new file mode 100644 index 0000000..1d76163 Binary files /dev/null and b/res/Z/ZORK.I/R76.840509.Z3#f58003 differ diff --git a/res/Z/ZORK.I/R88.840726.Z3#f58003 b/res/Z/ZORK.I/R88.840726.Z3#f58003 new file mode 100644 index 0000000..2de2d99 Binary files /dev/null and b/res/Z/ZORK.I/R88.840726.Z3#f58003 differ diff --git a/res/Z/ZORK.II/R15.820308.Z3#f58003 b/res/Z/ZORK.II/R15.820308.Z3#f58003 new file mode 100644 index 0000000..eca06a6 Binary files /dev/null and b/res/Z/ZORK.II/R15.820308.Z3#f58003 differ diff --git a/res/Z/ZORK.II/R17.820427.Z3#f58003 b/res/Z/ZORK.II/R17.820427.Z3#f58003 new file mode 100644 index 0000000..3a2f67d Binary files /dev/null and b/res/Z/ZORK.II/R17.820427.Z3#f58003 differ diff --git a/res/Z/ZORK.II/R18A.820512.Z3#f58003 b/res/Z/ZORK.II/R18A.820512.Z3#f58003 new file mode 100644 index 0000000..42f5fde Binary files /dev/null and b/res/Z/ZORK.II/R18A.820512.Z3#f58003 differ diff --git a/res/Z/ZORK.II/R18B.820517.Z3#f58003 b/res/Z/ZORK.II/R18B.820517.Z3#f58003 new file mode 100644 index 0000000..6846783 Binary files /dev/null and b/res/Z/ZORK.II/R18B.820517.Z3#f58003 differ diff --git a/res/Z/ZORK.II/R19.820721.Z3#f58003 b/res/Z/ZORK.II/R19.820721.Z3#f58003 new file mode 100644 index 0000000..3bcc5bb Binary files /dev/null and b/res/Z/ZORK.II/R19.820721.Z3#f58003 differ diff --git a/res/Z/ZORK.II/R22.830331.Z3#f58003 b/res/Z/ZORK.II/R22.830331.Z3#f58003 new file mode 100644 index 0000000..71386ad Binary files /dev/null and b/res/Z/ZORK.II/R22.830331.Z3#f58003 differ diff --git a/res/Z/ZORK.II/R23.830411.Z3#f58003 b/res/Z/ZORK.II/R23.830411.Z3#f58003 new file mode 100644 index 0000000..ff257d5 Binary files /dev/null and b/res/Z/ZORK.II/R23.830411.Z3#f58003 differ diff --git a/res/Z/ZORK.II/R48.840904.Z3#f58003 b/res/Z/ZORK.II/R48.840904.Z3#f58003 new file mode 100644 index 0000000..635caaf Binary files /dev/null and b/res/Z/ZORK.II/R48.840904.Z3#f58003 differ diff --git a/res/Z/ZORK.II/R63.860811.Z3#f58003 b/res/Z/ZORK.II/R63.860811.Z3#f58003 new file mode 100644 index 0000000..d6dccf0 Binary files /dev/null and b/res/Z/ZORK.II/R63.860811.Z3#f58003 differ diff --git a/res/Z/ZORK.II/R7.UG3AU5.Z2#f58002 b/res/Z/ZORK.II/R7.UG3AU5.Z2#f58002 new file mode 100644 index 0000000..904b833 Binary files /dev/null and b/res/Z/ZORK.II/R7.UG3AU5.Z2#f58002 differ diff --git a/res/Z/ZORK.III/R10.820818.Z3#f58003 b/res/Z/ZORK.III/R10.820818.Z3#f58003 new file mode 100644 index 0000000..9630f3e Binary files /dev/null and b/res/Z/ZORK.III/R10.820818.Z3#f58003 differ diff --git a/res/Z/ZORK.III/R12.821025.Z3#f58003 b/res/Z/ZORK.III/R12.821025.Z3#f58003 new file mode 100644 index 0000000..d83fa4a Binary files /dev/null and b/res/Z/ZORK.III/R12.821025.Z3#f58003 differ diff --git a/res/Z/ZORK.III/R15A.830331.Z3#f58003 b/res/Z/ZORK.III/R15A.830331.Z3#f58003 new file mode 100644 index 0000000..9464b8a Binary files /dev/null and b/res/Z/ZORK.III/R15A.830331.Z3#f58003 differ diff --git a/res/Z/ZORK.III/R15B.840518.Z3#f58003 b/res/Z/ZORK.III/R15B.840518.Z3#f58003 new file mode 100644 index 0000000..3b7b63c Binary files /dev/null and b/res/Z/ZORK.III/R15B.840518.Z3#f58003 differ diff --git a/res/Z/ZORK.III/R16.830410.Z3#f58003 b/res/Z/ZORK.III/R16.830410.Z3#f58003 new file mode 100644 index 0000000..33302d8 Binary files /dev/null and b/res/Z/ZORK.III/R16.830410.Z3#f58003 differ diff --git a/res/Z/ZORK.III/R17.840727.Z3#f58003 b/res/Z/ZORK.III/R17.840727.Z3#f58003 new file mode 100644 index 0000000..d02c9db Binary files /dev/null and b/res/Z/ZORK.III/R17.840727.Z3#f58003 differ diff --git a/res/Z/ZORK.III/R25.860811.Z3#f58003 b/res/Z/ZORK.III/R25.860811.Z3#f58003 new file mode 100644 index 0000000..7ea627e Binary files /dev/null and b/res/Z/ZORK.III/R25.860811.Z3#f58003 differ diff --git a/res/Z/ZORK.ZERO/R153.880510.SAV#040000 b/res/Z/ZORK.ZERO/R153.880510.SAV#040000 new file mode 100644 index 0000000..a5d3587 Binary files /dev/null and b/res/Z/ZORK.ZERO/R153.880510.SAV#040000 differ diff --git a/res/Z/ZORK.ZERO/R153.880510.Z5#f58005 b/res/Z/ZORK.ZERO/R153.880510.Z5#f58005 new file mode 100644 index 0000000..a1303b6 Binary files /dev/null and b/res/Z/ZORK.ZERO/R153.880510.Z5#f58005 differ diff --git a/res/Z/ZTUU/R16.970828.SAV#040000 b/res/Z/ZTUU/R16.970828.SAV#040000 new file mode 100644 index 0000000..34366c0 Binary files /dev/null and b/res/Z/ZTUU/R16.970828.SAV#040000 differ diff --git a/res/Z/ZTUU/R16.970828.Z5#f58005 b/res/Z/ZTUU/R16.970828.Z5#f58005 new file mode 100644 index 0000000..3b959f1 Binary files /dev/null and b/res/Z/ZTUU/R16.970828.Z5#f58005 differ diff --git a/res/blank.hdv b/res/blank.hdv new file mode 100644 index 0000000..3342b11 Binary files /dev/null and b/res/blank.hdv differ diff --git a/res/credits.txt b/res/credits.txt deleted file mode 100644 index 4a260ff..0000000 --- a/res/credits.txt +++ /dev/null @@ -1 +0,0 @@ -Pitch Dark is a frontend for exploring and playing Infocom text adventures. Release 5 / Serial number 20230503 Copyright 2018-2023 4am https://github.com/a2-4am/pitch-dark ~ On Beyond Z-Machine! is a ProDOS port of Infocom's Z-Machine interpreters. Copyright 2018-2023 qkumba based on code from six different games copyright 1979-1988 Infocom, Inc. ~ WeeGUI is a compact, easy-to-use GUI library for 8-bit Apple II computers. Copyright 2014-2018 Quinn Dunki https://github.com/blondie7575/WeeGUI/ ~ Artwork was scanned from original retail boxes and converted to Apple II native formats with the help of Bmp2DHR copyright 2014 Bill Buckels A2FCBmp copyright 2012-5 Bill Buckels buckshot copyright 2017 Dagen Brock ii-pix copyright 2021-3 Kris Kennaway https://www.appleoldies.ca/bmp2dhr/ https://apple2.gs/buckshot/ https://github.com/KrisKennaway/ii-pix ~ The PRIZM Project (Pretty Reliable Invisiclues for Z-Machine) are genuine Infocom Invisiclues, accessible in your favorite Z-Machine interpreter. Copyright 1999 Digby McWiggle and Steven Marsh Compiled, edited, and Z-coded by Digby McWiggle and Steven Marsh from material supplied by Henrik Dittmann, Paul David Doherty, Volker Blasius, and Mike Threepoint Thanks also to Brian Hall, L. Ross Raszewski, and Graham Nelson http://www.waitingforgo.com/ (offline) ~ Games, descriptions, and artwork are copyright 1979-1988 Infocom, Inc. Invisiclues are copyright 1993, 1999 Activision, Inc. Zork and all other game names are registered trademarks of Activision. [EOF] \ No newline at end of file diff --git a/res/text/mini.zork.2.txt b/res/text/mini.zork.2.txt index 451f502..dc7c7a2 100644 --- a/res/text/mini.zork.2.txt +++ b/res/text/mini.zork.2.txt @@ -17,10 +17,11 @@ [versions] R2.871123.Z3=Release 2 / Serial number 871123 +R15.210307.Z3=Release 15 / Serial number 210307 [options] ARTWORK=0 CLUES=0 -VERSIONS=0 +VERSIONS=1 [eof]