├── .gitignore ├── LICENSE ├── README.md ├── _config.yml ├── _layouts └── default.html ├── additional_resources.md ├── file_formats ├── anno16_chunks.hexpat ├── bsh.md ├── chunks.md ├── chunks │ ├── name.md │ ├── randtab.md │ ├── szene_gameid.md │ ├── szene_kampagne.md │ ├── szene_missnr.md │ ├── szene_ranking.md │ └── wiff.md ├── col.md ├── encryption.md ├── gam.md ├── hss.md ├── index.md ├── scp.md ├── script.md ├── szm.md ├── szs.md └── text.md ├── files ├── 1602.exe.md ├── 1602edit.exe.md ├── editor.cod.md ├── figuren.cod.md ├── gaddata │ └── index.md ├── gadedit │ └── index.md ├── game.dat.md ├── gfx │ └── index.md ├── haeuser.cod.md ├── index.md ├── mgfx │ └── index.md ├── music8 │ └── index.md ├── noklima │ └── index.md ├── nord │ └── index.md ├── nordnat │ └── index.md ├── own_scenarios │ └── index.md ├── samples │ └── index.md ├── savegame │ └── index.md ├── sgfx │ └── index.md ├── speech8 │ └── index.md ├── sued │ └── index.md ├── suednat │ └── index.md ├── szenes │ └── index.md ├── text.cod.md ├── toolgfx │ └── index.md └── videosmk │ └── index.md └── version_differences.md /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/anno16_docs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/anno16_docs/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/anno16_docs/HEAD/_config.yml -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/anno16_docs/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /additional_resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/anno16_docs/HEAD/additional_resources.md -------------------------------------------------------------------------------- /file_formats/anno16_chunks.hexpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/anno16_docs/HEAD/file_formats/anno16_chunks.hexpat -------------------------------------------------------------------------------- /file_formats/bsh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/anno16_docs/HEAD/file_formats/bsh.md -------------------------------------------------------------------------------- /file_formats/chunks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/anno16_docs/HEAD/file_formats/chunks.md -------------------------------------------------------------------------------- /file_formats/chunks/name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/anno16_docs/HEAD/file_formats/chunks/name.md -------------------------------------------------------------------------------- /file_formats/chunks/randtab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/anno16_docs/HEAD/file_formats/chunks/randtab.md -------------------------------------------------------------------------------- /file_formats/chunks/szene_gameid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/anno16_docs/HEAD/file_formats/chunks/szene_gameid.md -------------------------------------------------------------------------------- /file_formats/chunks/szene_kampagne.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/anno16_docs/HEAD/file_formats/chunks/szene_kampagne.md -------------------------------------------------------------------------------- /file_formats/chunks/szene_missnr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/anno16_docs/HEAD/file_formats/chunks/szene_missnr.md -------------------------------------------------------------------------------- /file_formats/chunks/szene_ranking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/anno16_docs/HEAD/file_formats/chunks/szene_ranking.md -------------------------------------------------------------------------------- /file_formats/chunks/wiff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/anno16_docs/HEAD/file_formats/chunks/wiff.md -------------------------------------------------------------------------------- /file_formats/col.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/anno16_docs/HEAD/file_formats/col.md -------------------------------------------------------------------------------- /file_formats/encryption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/anno16_docs/HEAD/file_formats/encryption.md -------------------------------------------------------------------------------- /file_formats/gam.md: -------------------------------------------------------------------------------- 1 | # GAM # 2 | The SaveGame file format. 3 | 4 | -------------------------------------------------------------------------------- /file_formats/hss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/anno16_docs/HEAD/file_formats/hss.md -------------------------------------------------------------------------------- /file_formats/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/anno16_docs/HEAD/file_formats/index.md -------------------------------------------------------------------------------- /file_formats/scp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/anno16_docs/HEAD/file_formats/scp.md -------------------------------------------------------------------------------- /file_formats/script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/anno16_docs/HEAD/file_formats/script.md -------------------------------------------------------------------------------- /file_formats/szm.md: -------------------------------------------------------------------------------- 1 | # SZM # 2 | 3 | -------------------------------------------------------------------------------- /file_formats/szs.md: -------------------------------------------------------------------------------- 1 | # SZS # 2 | 3 | -------------------------------------------------------------------------------- /file_formats/text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/anno16_docs/HEAD/file_formats/text.md -------------------------------------------------------------------------------- /files/1602.exe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/anno16_docs/HEAD/files/1602.exe.md -------------------------------------------------------------------------------- /files/1602edit.exe.md: -------------------------------------------------------------------------------- 1 | # Editor (1602edit.exe) # 2 | 3 | -------------------------------------------------------------------------------- /files/editor.cod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/anno16_docs/HEAD/files/editor.cod.md -------------------------------------------------------------------------------- /files/figuren.cod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/anno16_docs/HEAD/files/figuren.cod.md -------------------------------------------------------------------------------- /files/gaddata/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/anno16_docs/HEAD/files/gaddata/index.md -------------------------------------------------------------------------------- /files/gadedit/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/anno16_docs/HEAD/files/gadedit/index.md -------------------------------------------------------------------------------- /files/game.dat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/anno16_docs/HEAD/files/game.dat.md -------------------------------------------------------------------------------- /files/gfx/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/anno16_docs/HEAD/files/gfx/index.md -------------------------------------------------------------------------------- /files/haeuser.cod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/anno16_docs/HEAD/files/haeuser.cod.md -------------------------------------------------------------------------------- /files/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/anno16_docs/HEAD/files/index.md -------------------------------------------------------------------------------- /files/mgfx/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/anno16_docs/HEAD/files/mgfx/index.md -------------------------------------------------------------------------------- /files/music8/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/anno16_docs/HEAD/files/music8/index.md -------------------------------------------------------------------------------- /files/noklima/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/anno16_docs/HEAD/files/noklima/index.md -------------------------------------------------------------------------------- /files/nord/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/anno16_docs/HEAD/files/nord/index.md -------------------------------------------------------------------------------- /files/nordnat/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/anno16_docs/HEAD/files/nordnat/index.md -------------------------------------------------------------------------------- /files/own_scenarios/index.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files/samples/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/anno16_docs/HEAD/files/samples/index.md -------------------------------------------------------------------------------- /files/savegame/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/anno16_docs/HEAD/files/savegame/index.md -------------------------------------------------------------------------------- /files/sgfx/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/anno16_docs/HEAD/files/sgfx/index.md -------------------------------------------------------------------------------- /files/speech8/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/anno16_docs/HEAD/files/speech8/index.md -------------------------------------------------------------------------------- /files/sued/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/anno16_docs/HEAD/files/sued/index.md -------------------------------------------------------------------------------- /files/suednat/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/anno16_docs/HEAD/files/suednat/index.md -------------------------------------------------------------------------------- /files/szenes/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/anno16_docs/HEAD/files/szenes/index.md -------------------------------------------------------------------------------- /files/text.cod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/anno16_docs/HEAD/files/text.cod.md -------------------------------------------------------------------------------- /files/toolgfx/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/anno16_docs/HEAD/files/toolgfx/index.md -------------------------------------------------------------------------------- /files/videosmk/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/anno16_docs/HEAD/files/videosmk/index.md -------------------------------------------------------------------------------- /version_differences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Green-Sky/anno16_docs/HEAD/version_differences.md --------------------------------------------------------------------------------