Skip to content

SE1 File Format

Shadow Empire uses the following file extensions to logically group the file types it uses.

These file extensions are:

ExtensionType
.se1Scenario
.se1masterMasterfile
.se1evlibEvent Library
.se1zipMod Library
.se1mapMap file
.se1troopsTroop Library
.se1hisHistorical Library
.se1offOfficer Library
.se1offcardOfficer Card Library

The game uses the .se1, .se1master, .se1zip and .se1evlib file types, but the remaining ones are still technically still possible.

All files use the same data format, but depending on the file type and what its purpose is, the contents of the file may vary.

Compression

All .se1[*] files are ZIP file archives compressed with the Deflate algorithm.

Archive

Most uncompressed archives will contain a single file named temp.txt, which is a binary file containing the serialized Game Data in NRBF format.

.se1zip is the exception where the remaining archive entries will be directories containing assets that are part of that mod library.

Binary

The binary file can be decoded/deserialized into data structures, by using a NRBF decoder.

Depending on the implementation and programming language this could require generating the correct data types before attempting to deserialize the binary file.