pitch-dark/res/prizm
4am 16d41a6803 add Zork Zero PRIZM help file, DHGR and SHR artwork 2020-04-22 18:45:18 -04:00
..
amfv.z5 consistent hints filenames 2018-03-22 20:10:39 -04:00
ballyhoo.z5 consistent hints filenames 2018-03-22 20:10:39 -04:00
beyond.zork.z5 consistent hints filenames 2018-03-22 20:10:39 -04:00
border.zone.z5 consistent hints filenames 2018-03-22 20:10:39 -04:00
bureaucracy.z5 consistent hints filenames 2018-03-22 20:10:39 -04:00
cutthroats.z5 consistent hints filenames 2018-03-22 20:10:39 -04:00
deadline.z5 consistent hints filenames 2018-03-22 20:10:39 -04:00
enchanter.z5 consistent hints filenames 2018-03-22 20:10:39 -04:00
hgttg.z5 consistent hints filenames 2018-03-22 20:10:39 -04:00
hollywood.z5 consistent hints filenames 2018-03-22 20:10:39 -04:00
infidel.z5 consistent hints filenames 2018-03-22 20:10:39 -04:00
lgop.z5 consistent hints filenames 2018-03-22 20:10:39 -04:00
lurking.horror.z5 consistent hints filenames 2018-03-22 20:10:39 -04:00
moonmist.z5 consistent hints filenames 2018-03-22 20:10:39 -04:00
nord.and.bert.z5 consistent hints filenames 2018-03-22 20:10:39 -04:00
planetfall.z5 consistent hints filenames 2018-03-22 20:10:39 -04:00
plundered.z5 consistent hints filenames 2018-03-22 20:10:39 -04:00
readme.txt add hints, break preferences (for now) 2018-03-16 14:17:45 -04:00
seastalker.z5 consistent hints filenames 2018-03-22 20:10:39 -04:00
sherlock.z5 consistent hints filenames 2018-03-22 20:10:39 -04:00
sorcerer.z5 consistent hints filenames 2018-03-22 20:10:39 -04:00
spellbreaker.z5 consistent hints filenames 2018-03-22 20:10:39 -04:00
starcross.z5 consistent hints filenames 2018-03-22 20:10:39 -04:00
stationfall.z5 consistent hints filenames 2018-03-22 20:10:39 -04:00
suspect.z5 consistent hints filenames 2018-03-22 20:10:39 -04:00
suspended.z5 consistent hints filenames 2018-03-22 20:10:39 -04:00
trinity.z5 consistent hints filenames 2018-03-22 20:10:39 -04:00
wishbringer.z5 consistent hints filenames 2018-03-22 20:10:39 -04:00
witness.z5 consistent hints filenames 2018-03-22 20:10:39 -04:00
zork.i.z5 consistent hints filenames 2018-03-22 20:10:39 -04:00
zork.ii.z5 consistent hints filenames 2018-03-22 20:10:39 -04:00
zork.iii.z5 consistent hints filenames 2018-03-22 20:10:39 -04:00
zork.zero.z5 add Zork Zero PRIZM help file, DHGR and SHR artwork 2020-04-22 18:45:18 -04:00
ztuu.z5 consistent hints filenames 2018-03-22 20:10:39 -04:00

readme.txt

Source: http://infodoc.plover.net/hints/

These help files were put together by Digby McWiggle and Steven Marsh as part of their PRIZM project, whose website is now defunct. They are a compilation of all the Invisiclues available for each of the games in one handy cross-platform file.

Small patches were applied to each file to remove the warning that your screen is too small and you should make it wider if possible. Since this is not possible on the Apple II (and 80 columns is still too small), the subroutine responsible for this warning has been changed to immediately return without printing anything or waiting for a key. Here is the command I used, which finds the byte sequence "10 00 21 12 0d 01 00 0d 02 01" and replaces the first byte with B0, the "return true" opcode.

for f in *.z5; do
  xxd -p -c 256 "$f" | \
    tr -d '\n' | \
    sed "s/100021120d01000d0201/B00021120d01000d0201/g" | \
    xxd -r -p \
    > ../patched/"$f"
done

-4am

last modified: 2018-03-12