├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── bin ├── V2Make.scpt ├── changefont.js ├── changefont.sh ├── rsync.js └── wiz.vii ├── res ├── Attic │ ├── ATOMIC.WASTELAND.BC00 │ ├── BLACK.STONE.BC00 │ ├── DRAGONQUEST.BC00 │ ├── EMPEROR.BC00 │ ├── KNIGHT.OF.THE.GRAVE.BC00 │ ├── KOD.AA00 │ ├── KOD.BC00 │ ├── NIHONBASHI.BC00 │ ├── OCONNOR.BC00 │ ├── PROVING.BC00 │ ├── SCARLET.BC00 │ ├── VLAD.BC00 │ ├── transfer-dos.do │ └── transfer.po ├── Mono Number 5 │ ├── OFL.txt │ ├── font-master.txt │ └── font.py ├── PI.TITLE ├── Wizard Replay Mono │ ├── OFL.txt │ ├── font-master.txt │ └── font.py ├── blank.hdv ├── dsk │ ├── Islands of Death PRODOS (san inc pack).po │ ├── Lavalite World Scenario PRODOS (san inc pack).po │ ├── Origin of the Sword Lords PRODOS (san inc pack).po │ ├── Ultimore - Egypt PRODOS (san inc pack).po │ ├── Ultimore - Slavelords PRODOS (san inc pack).po │ ├── Ultimore - Spaceship Crash PRODOS (san inc pack).po │ ├── Ultimore Adventure 1 - A World Divided PRODOS (san inc pack).po │ ├── Ultimore Pirate World PRODOS (san inc pack).po │ ├── WizPlus.po │ ├── Wizardry - Atomic Wasteland 2098 v3.1 PRODOS.po │ ├── Wizardry - Black Stone v3.1 PRODOS.po │ ├── Wizardry - Knight of the Grave v3.1 PRODOS.po │ ├── Wizardry I - Proving Grounds v3.1 PRODOS.po │ ├── Wizardry II - Knight of Diamonds PRODOS (san inc crack)(cleaned).po │ ├── Wizardry III - Legacy of Llylgamyn PRODOS (san inc crack).po │ ├── Wizimore - Catacombs of Vlad v3.1 PRODOS.po │ ├── Wizimore - Dragon Quest v3.1 PRODOS.po │ ├── Wizimore - Nihonbashi v3.1 PRODOS.po │ ├── Wizimore - O'Connor's Mine v3.1 PRODOS.po │ ├── Wizimore - Scarlet Brotherhood of Hsi Ho v3.1 PRODOS.po │ ├── Wizimore - The Emperor's Seal v3.1 PRODOS.po │ ├── ultima3 PRODOS (san inc crack).po │ ├── ultima4 PRODOS (san inc pack).po │ └── ultima5 PRODOS (san inc pack).po ├── history.md ├── notes │ └── ui-notes.txt ├── wizfont.bin └── wizgfx │ ├── ATOMICWASTELAND00 │ ├── ATOMICWASTELAND02 │ ├── ATOMICWASTELAND04 │ ├── ATOMICWASTELAND11 │ ├── BLACKSTONE00 │ ├── BLACKSTONE06 │ ├── BLACKSTONE0F │ ├── EMPEROR01 │ ├── EMPEROR04 │ ├── EMPEROR11 │ ├── KNIGHTGRAVE05 │ ├── KNIGHTGRAVE0D │ ├── KNIGHTGRAVE13 │ ├── KOD05 │ ├── KOD09 │ ├── KOD0B │ ├── KOD10 │ ├── KOD11 │ ├── NIHONBASHI00 │ ├── NIHONBASHI02 │ ├── NIHONBASHI08 │ ├── OCONNOR00 │ ├── OCONNOR06 │ ├── OCONNOR0C │ ├── PROVING04 │ ├── PROVING07 │ ├── PROVING11 │ ├── SCARLET00 │ ├── SCARLET01 │ ├── SCARLET06 │ ├── VLAD00 │ ├── VLAD06 │ └── VLAD11 ├── src ├── Attic │ └── graphics.explorer.a ├── backup.restore.a ├── constants.a ├── glue.bye.a ├── glue.launch.a ├── glue.mli.a ├── glue.path.a ├── hw.iigs.a ├── loader.wizardry1.v31.a ├── loader.wizardry2.a ├── loader.wizardry3.a ├── loader.wizplus1.a ├── loader.wizplus2.a ├── loader.wizplus3.a ├── macros.a ├── paths.a ├── ui.common.a ├── ui.credits.a ├── ui.font.a ├── ui.font.data.a ├── ui.main.menu.a ├── ui.menu.common.a ├── ui.other.menu.a ├── ui.restore.menu.a ├── ui.strings.a ├── ui.ultima.action.menu.a ├── ui.ultima.menu.a ├── ui.wizardry.action.menu.a ├── ui.wizardry.menu.a ├── ui.wizimore.menu.a ├── wizard.replay.a ├── wizfont.a └── wizgfx.a └── winmake.bat /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /build/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # wizard-replay -------------------------------------------------------------------------------- /bin/V2Make.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/bin/V2Make.scpt -------------------------------------------------------------------------------- /bin/changefont.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/bin/changefont.js -------------------------------------------------------------------------------- /bin/changefont.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/bin/changefont.sh -------------------------------------------------------------------------------- /bin/rsync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/bin/rsync.js -------------------------------------------------------------------------------- /bin/wiz.vii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/bin/wiz.vii -------------------------------------------------------------------------------- /res/Attic/ATOMIC.WASTELAND.BC00: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/Attic/ATOMIC.WASTELAND.BC00 -------------------------------------------------------------------------------- /res/Attic/BLACK.STONE.BC00: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/Attic/BLACK.STONE.BC00 -------------------------------------------------------------------------------- /res/Attic/DRAGONQUEST.BC00: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/Attic/DRAGONQUEST.BC00 -------------------------------------------------------------------------------- /res/Attic/EMPEROR.BC00: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/Attic/EMPEROR.BC00 -------------------------------------------------------------------------------- /res/Attic/KNIGHT.OF.THE.GRAVE.BC00: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/Attic/KNIGHT.OF.THE.GRAVE.BC00 -------------------------------------------------------------------------------- /res/Attic/KOD.AA00: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/Attic/KOD.AA00 -------------------------------------------------------------------------------- /res/Attic/KOD.BC00: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/Attic/KOD.BC00 -------------------------------------------------------------------------------- /res/Attic/NIHONBASHI.BC00: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/Attic/NIHONBASHI.BC00 -------------------------------------------------------------------------------- /res/Attic/OCONNOR.BC00: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/Attic/OCONNOR.BC00 -------------------------------------------------------------------------------- /res/Attic/PROVING.BC00: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/Attic/PROVING.BC00 -------------------------------------------------------------------------------- /res/Attic/SCARLET.BC00: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/Attic/SCARLET.BC00 -------------------------------------------------------------------------------- /res/Attic/VLAD.BC00: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/Attic/VLAD.BC00 -------------------------------------------------------------------------------- /res/Attic/transfer-dos.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/Attic/transfer-dos.do -------------------------------------------------------------------------------- /res/Attic/transfer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/Attic/transfer.po -------------------------------------------------------------------------------- /res/Mono Number 5/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/Mono Number 5/OFL.txt -------------------------------------------------------------------------------- /res/Mono Number 5/font-master.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/Mono Number 5/font-master.txt -------------------------------------------------------------------------------- /res/Mono Number 5/font.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/Mono Number 5/font.py -------------------------------------------------------------------------------- /res/PI.TITLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/PI.TITLE -------------------------------------------------------------------------------- /res/Wizard Replay Mono/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/Wizard Replay Mono/OFL.txt -------------------------------------------------------------------------------- /res/Wizard Replay Mono/font-master.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/Wizard Replay Mono/font-master.txt -------------------------------------------------------------------------------- /res/Wizard Replay Mono/font.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/Wizard Replay Mono/font.py -------------------------------------------------------------------------------- /res/blank.hdv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/blank.hdv -------------------------------------------------------------------------------- /res/dsk/Islands of Death PRODOS (san inc pack).po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/dsk/Islands of Death PRODOS (san inc pack).po -------------------------------------------------------------------------------- /res/dsk/Lavalite World Scenario PRODOS (san inc pack).po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/dsk/Lavalite World Scenario PRODOS (san inc pack).po -------------------------------------------------------------------------------- /res/dsk/Origin of the Sword Lords PRODOS (san inc pack).po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/dsk/Origin of the Sword Lords PRODOS (san inc pack).po -------------------------------------------------------------------------------- /res/dsk/Ultimore - Egypt PRODOS (san inc pack).po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/dsk/Ultimore - Egypt PRODOS (san inc pack).po -------------------------------------------------------------------------------- /res/dsk/Ultimore - Slavelords PRODOS (san inc pack).po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/dsk/Ultimore - Slavelords PRODOS (san inc pack).po -------------------------------------------------------------------------------- /res/dsk/Ultimore - Spaceship Crash PRODOS (san inc pack).po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/dsk/Ultimore - Spaceship Crash PRODOS (san inc pack).po -------------------------------------------------------------------------------- /res/dsk/Ultimore Adventure 1 - A World Divided PRODOS (san inc pack).po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/dsk/Ultimore Adventure 1 - A World Divided PRODOS (san inc pack).po -------------------------------------------------------------------------------- /res/dsk/Ultimore Pirate World PRODOS (san inc pack).po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/dsk/Ultimore Pirate World PRODOS (san inc pack).po -------------------------------------------------------------------------------- /res/dsk/WizPlus.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/dsk/WizPlus.po -------------------------------------------------------------------------------- /res/dsk/Wizardry - Atomic Wasteland 2098 v3.1 PRODOS.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/dsk/Wizardry - Atomic Wasteland 2098 v3.1 PRODOS.po -------------------------------------------------------------------------------- /res/dsk/Wizardry - Black Stone v3.1 PRODOS.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/dsk/Wizardry - Black Stone v3.1 PRODOS.po -------------------------------------------------------------------------------- /res/dsk/Wizardry - Knight of the Grave v3.1 PRODOS.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/dsk/Wizardry - Knight of the Grave v3.1 PRODOS.po -------------------------------------------------------------------------------- /res/dsk/Wizardry I - Proving Grounds v3.1 PRODOS.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/dsk/Wizardry I - Proving Grounds v3.1 PRODOS.po -------------------------------------------------------------------------------- /res/dsk/Wizardry II - Knight of Diamonds PRODOS (san inc crack)(cleaned).po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/dsk/Wizardry II - Knight of Diamonds PRODOS (san inc crack)(cleaned).po -------------------------------------------------------------------------------- /res/dsk/Wizardry III - Legacy of Llylgamyn PRODOS (san inc crack).po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/dsk/Wizardry III - Legacy of Llylgamyn PRODOS (san inc crack).po -------------------------------------------------------------------------------- /res/dsk/Wizimore - Catacombs of Vlad v3.1 PRODOS.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/dsk/Wizimore - Catacombs of Vlad v3.1 PRODOS.po -------------------------------------------------------------------------------- /res/dsk/Wizimore - Dragon Quest v3.1 PRODOS.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/dsk/Wizimore - Dragon Quest v3.1 PRODOS.po -------------------------------------------------------------------------------- /res/dsk/Wizimore - Nihonbashi v3.1 PRODOS.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/dsk/Wizimore - Nihonbashi v3.1 PRODOS.po -------------------------------------------------------------------------------- /res/dsk/Wizimore - O'Connor's Mine v3.1 PRODOS.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/dsk/Wizimore - O'Connor's Mine v3.1 PRODOS.po -------------------------------------------------------------------------------- /res/dsk/Wizimore - Scarlet Brotherhood of Hsi Ho v3.1 PRODOS.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/dsk/Wizimore - Scarlet Brotherhood of Hsi Ho v3.1 PRODOS.po -------------------------------------------------------------------------------- /res/dsk/Wizimore - The Emperor's Seal v3.1 PRODOS.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/dsk/Wizimore - The Emperor's Seal v3.1 PRODOS.po -------------------------------------------------------------------------------- /res/dsk/ultima3 PRODOS (san inc crack).po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/dsk/ultima3 PRODOS (san inc crack).po -------------------------------------------------------------------------------- /res/dsk/ultima4 PRODOS (san inc pack).po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/dsk/ultima4 PRODOS (san inc pack).po -------------------------------------------------------------------------------- /res/dsk/ultima5 PRODOS (san inc pack).po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/dsk/ultima5 PRODOS (san inc pack).po -------------------------------------------------------------------------------- /res/history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/history.md -------------------------------------------------------------------------------- /res/notes/ui-notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/notes/ui-notes.txt -------------------------------------------------------------------------------- /res/wizfont.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/wizfont.bin -------------------------------------------------------------------------------- /res/wizgfx/ATOMICWASTELAND00: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/wizgfx/ATOMICWASTELAND00 -------------------------------------------------------------------------------- /res/wizgfx/ATOMICWASTELAND02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/wizgfx/ATOMICWASTELAND02 -------------------------------------------------------------------------------- /res/wizgfx/ATOMICWASTELAND04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/wizgfx/ATOMICWASTELAND04 -------------------------------------------------------------------------------- /res/wizgfx/ATOMICWASTELAND11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/wizgfx/ATOMICWASTELAND11 -------------------------------------------------------------------------------- /res/wizgfx/BLACKSTONE00: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/wizgfx/BLACKSTONE00 -------------------------------------------------------------------------------- /res/wizgfx/BLACKSTONE06: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/wizgfx/BLACKSTONE06 -------------------------------------------------------------------------------- /res/wizgfx/BLACKSTONE0F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/wizgfx/BLACKSTONE0F -------------------------------------------------------------------------------- /res/wizgfx/EMPEROR01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/wizgfx/EMPEROR01 -------------------------------------------------------------------------------- /res/wizgfx/EMPEROR04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/wizgfx/EMPEROR04 -------------------------------------------------------------------------------- /res/wizgfx/EMPEROR11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/wizgfx/EMPEROR11 -------------------------------------------------------------------------------- /res/wizgfx/KNIGHTGRAVE05: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/wizgfx/KNIGHTGRAVE05 -------------------------------------------------------------------------------- /res/wizgfx/KNIGHTGRAVE0D: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/wizgfx/KNIGHTGRAVE0D -------------------------------------------------------------------------------- /res/wizgfx/KNIGHTGRAVE13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/wizgfx/KNIGHTGRAVE13 -------------------------------------------------------------------------------- /res/wizgfx/KOD05: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/wizgfx/KOD05 -------------------------------------------------------------------------------- /res/wizgfx/KOD09: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/wizgfx/KOD09 -------------------------------------------------------------------------------- /res/wizgfx/KOD0B: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/wizgfx/KOD0B -------------------------------------------------------------------------------- /res/wizgfx/KOD10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/wizgfx/KOD10 -------------------------------------------------------------------------------- /res/wizgfx/KOD11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/wizgfx/KOD11 -------------------------------------------------------------------------------- /res/wizgfx/NIHONBASHI00: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/wizgfx/NIHONBASHI00 -------------------------------------------------------------------------------- /res/wizgfx/NIHONBASHI02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/wizgfx/NIHONBASHI02 -------------------------------------------------------------------------------- /res/wizgfx/NIHONBASHI08: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/wizgfx/NIHONBASHI08 -------------------------------------------------------------------------------- /res/wizgfx/OCONNOR00: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/wizgfx/OCONNOR00 -------------------------------------------------------------------------------- /res/wizgfx/OCONNOR06: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/wizgfx/OCONNOR06 -------------------------------------------------------------------------------- /res/wizgfx/OCONNOR0C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/wizgfx/OCONNOR0C -------------------------------------------------------------------------------- /res/wizgfx/PROVING04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/wizgfx/PROVING04 -------------------------------------------------------------------------------- /res/wizgfx/PROVING07: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/wizgfx/PROVING07 -------------------------------------------------------------------------------- /res/wizgfx/PROVING11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/wizgfx/PROVING11 -------------------------------------------------------------------------------- /res/wizgfx/SCARLET00: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/wizgfx/SCARLET00 -------------------------------------------------------------------------------- /res/wizgfx/SCARLET01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/wizgfx/SCARLET01 -------------------------------------------------------------------------------- /res/wizgfx/SCARLET06: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/wizgfx/SCARLET06 -------------------------------------------------------------------------------- /res/wizgfx/VLAD00: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/wizgfx/VLAD00 -------------------------------------------------------------------------------- /res/wizgfx/VLAD06: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/wizgfx/VLAD06 -------------------------------------------------------------------------------- /res/wizgfx/VLAD11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/res/wizgfx/VLAD11 -------------------------------------------------------------------------------- /src/Attic/graphics.explorer.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/src/Attic/graphics.explorer.a -------------------------------------------------------------------------------- /src/backup.restore.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/src/backup.restore.a -------------------------------------------------------------------------------- /src/constants.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/src/constants.a -------------------------------------------------------------------------------- /src/glue.bye.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/src/glue.bye.a -------------------------------------------------------------------------------- /src/glue.launch.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/src/glue.launch.a -------------------------------------------------------------------------------- /src/glue.mli.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/src/glue.mli.a -------------------------------------------------------------------------------- /src/glue.path.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/src/glue.path.a -------------------------------------------------------------------------------- /src/hw.iigs.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/src/hw.iigs.a -------------------------------------------------------------------------------- /src/loader.wizardry1.v31.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/src/loader.wizardry1.v31.a -------------------------------------------------------------------------------- /src/loader.wizardry2.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/src/loader.wizardry2.a -------------------------------------------------------------------------------- /src/loader.wizardry3.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/src/loader.wizardry3.a -------------------------------------------------------------------------------- /src/loader.wizplus1.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/src/loader.wizplus1.a -------------------------------------------------------------------------------- /src/loader.wizplus2.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/src/loader.wizplus2.a -------------------------------------------------------------------------------- /src/loader.wizplus3.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/src/loader.wizplus3.a -------------------------------------------------------------------------------- /src/macros.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/src/macros.a -------------------------------------------------------------------------------- /src/paths.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/src/paths.a -------------------------------------------------------------------------------- /src/ui.common.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/src/ui.common.a -------------------------------------------------------------------------------- /src/ui.credits.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/src/ui.credits.a -------------------------------------------------------------------------------- /src/ui.font.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/src/ui.font.a -------------------------------------------------------------------------------- /src/ui.font.data.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/src/ui.font.data.a -------------------------------------------------------------------------------- /src/ui.main.menu.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/src/ui.main.menu.a -------------------------------------------------------------------------------- /src/ui.menu.common.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/src/ui.menu.common.a -------------------------------------------------------------------------------- /src/ui.other.menu.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/src/ui.other.menu.a -------------------------------------------------------------------------------- /src/ui.restore.menu.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/src/ui.restore.menu.a -------------------------------------------------------------------------------- /src/ui.strings.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/src/ui.strings.a -------------------------------------------------------------------------------- /src/ui.ultima.action.menu.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/src/ui.ultima.action.menu.a -------------------------------------------------------------------------------- /src/ui.ultima.menu.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/src/ui.ultima.menu.a -------------------------------------------------------------------------------- /src/ui.wizardry.action.menu.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/src/ui.wizardry.action.menu.a -------------------------------------------------------------------------------- /src/ui.wizardry.menu.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/src/ui.wizardry.menu.a -------------------------------------------------------------------------------- /src/ui.wizimore.menu.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/src/ui.wizimore.menu.a -------------------------------------------------------------------------------- /src/wizard.replay.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/src/wizard.replay.a -------------------------------------------------------------------------------- /src/wizfont.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/src/wizfont.a -------------------------------------------------------------------------------- /src/wizgfx.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/src/wizgfx.a -------------------------------------------------------------------------------- /winmake.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/wizard-replay/HEAD/winmake.bat --------------------------------------------------------------------------------