├── .gitignore ├── BUILD.BAT ├── DOC ├── ABOUT.HLP ├── CREATURE.HLP ├── EDITOR.HLP ├── GAME.HLP ├── INFO.HLP ├── ITEM.HLP ├── LANG.HLP ├── LANGREF.HLP ├── LANGTUT.HLP ├── LICENSE.HLP └── TERRAIN.HLP ├── LICENSE.TXT ├── MISC └── relocfix.py ├── README.MD ├── RES ├── DEMO.ZZT └── ZZT.CFG ├── SRC ├── EDITOR.PAS ├── ELEMENTS.PAS ├── GAME.PAS ├── GAMEVARS.PAS ├── INPUT.PAS ├── KEYS.PAS ├── OOP.PAS ├── SOUNDS.PAS ├── TXTWIND.PAS ├── VIDEO.PAS └── ZZT.PAS └── TOOLS ├── DATPACK.PAS ├── LZEXE.DOC └── LZEXE.EXE /.gitignore: -------------------------------------------------------------------------------- 1 | BIN 2 | DIST 3 | -------------------------------------------------------------------------------- /BUILD.BAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/reconstruction-of-zzt/HEAD/BUILD.BAT -------------------------------------------------------------------------------- /DOC/ABOUT.HLP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/reconstruction-of-zzt/HEAD/DOC/ABOUT.HLP -------------------------------------------------------------------------------- /DOC/CREATURE.HLP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/reconstruction-of-zzt/HEAD/DOC/CREATURE.HLP -------------------------------------------------------------------------------- /DOC/EDITOR.HLP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/reconstruction-of-zzt/HEAD/DOC/EDITOR.HLP -------------------------------------------------------------------------------- /DOC/GAME.HLP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/reconstruction-of-zzt/HEAD/DOC/GAME.HLP -------------------------------------------------------------------------------- /DOC/INFO.HLP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/reconstruction-of-zzt/HEAD/DOC/INFO.HLP -------------------------------------------------------------------------------- /DOC/ITEM.HLP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/reconstruction-of-zzt/HEAD/DOC/ITEM.HLP -------------------------------------------------------------------------------- /DOC/LANG.HLP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/reconstruction-of-zzt/HEAD/DOC/LANG.HLP -------------------------------------------------------------------------------- /DOC/LANGREF.HLP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/reconstruction-of-zzt/HEAD/DOC/LANGREF.HLP -------------------------------------------------------------------------------- /DOC/LANGTUT.HLP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/reconstruction-of-zzt/HEAD/DOC/LANGTUT.HLP -------------------------------------------------------------------------------- /DOC/LICENSE.HLP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/reconstruction-of-zzt/HEAD/DOC/LICENSE.HLP -------------------------------------------------------------------------------- /DOC/TERRAIN.HLP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/reconstruction-of-zzt/HEAD/DOC/TERRAIN.HLP -------------------------------------------------------------------------------- /LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/reconstruction-of-zzt/HEAD/LICENSE.TXT -------------------------------------------------------------------------------- /MISC/relocfix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/reconstruction-of-zzt/HEAD/MISC/relocfix.py -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/reconstruction-of-zzt/HEAD/README.MD -------------------------------------------------------------------------------- /RES/DEMO.ZZT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/reconstruction-of-zzt/HEAD/RES/DEMO.ZZT -------------------------------------------------------------------------------- /RES/ZZT.CFG: -------------------------------------------------------------------------------- 1 | DEMO 2 | REGISTERED 3 | -------------------------------------------------------------------------------- /SRC/EDITOR.PAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/reconstruction-of-zzt/HEAD/SRC/EDITOR.PAS -------------------------------------------------------------------------------- /SRC/ELEMENTS.PAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/reconstruction-of-zzt/HEAD/SRC/ELEMENTS.PAS -------------------------------------------------------------------------------- /SRC/GAME.PAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/reconstruction-of-zzt/HEAD/SRC/GAME.PAS -------------------------------------------------------------------------------- /SRC/GAMEVARS.PAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/reconstruction-of-zzt/HEAD/SRC/GAMEVARS.PAS -------------------------------------------------------------------------------- /SRC/INPUT.PAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/reconstruction-of-zzt/HEAD/SRC/INPUT.PAS -------------------------------------------------------------------------------- /SRC/KEYS.PAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/reconstruction-of-zzt/HEAD/SRC/KEYS.PAS -------------------------------------------------------------------------------- /SRC/OOP.PAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/reconstruction-of-zzt/HEAD/SRC/OOP.PAS -------------------------------------------------------------------------------- /SRC/SOUNDS.PAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/reconstruction-of-zzt/HEAD/SRC/SOUNDS.PAS -------------------------------------------------------------------------------- /SRC/TXTWIND.PAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/reconstruction-of-zzt/HEAD/SRC/TXTWIND.PAS -------------------------------------------------------------------------------- /SRC/VIDEO.PAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/reconstruction-of-zzt/HEAD/SRC/VIDEO.PAS -------------------------------------------------------------------------------- /SRC/ZZT.PAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/reconstruction-of-zzt/HEAD/SRC/ZZT.PAS -------------------------------------------------------------------------------- /TOOLS/DATPACK.PAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/reconstruction-of-zzt/HEAD/TOOLS/DATPACK.PAS -------------------------------------------------------------------------------- /TOOLS/LZEXE.DOC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/reconstruction-of-zzt/HEAD/TOOLS/LZEXE.DOC -------------------------------------------------------------------------------- /TOOLS/LZEXE.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/reconstruction-of-zzt/HEAD/TOOLS/LZEXE.EXE --------------------------------------------------------------------------------