Cross-platform utility to examine Wizardry disk images. Currently works on the first three scenarios.
Use the File menu to open an existing Wizardry Scenario disk image. Select a tab to display the various Wizardry components
Navigate around the maze using the A/W/S/D keys. To go directly to a particular square, just click on it. There is no need to kick doors down, you can simply walk through any wall. None of the special squares affect you, and you can see perfectly well in the dark. You are invincible.
- Download and install the latest JDK and JavaFX binaries.
- Download WizardryApp.
- Create executable run file as follows:
/path/to/jdk/Contents/Home/bin/java \
--module-path /path/to/javafx-sdk/lib \
--add-modules=javafx.controls \
-jar /path/to/WizardryApp.jar
C:\path\to\jdk\bin\java.exe \
--module-path C:\path\to\javafx-sdk\lib \
--add-modules=javafx.controls \
-jar C:\path\to\WizardryApp.jar
The first line in each of the above shell files can usually be shortened to 'java \' as it's just the command to execute java on your system. The second line must be the path to wherever you placed the javafx download.