Connection ErrorBad RequestSession ExpiredSign in requiredForbiddenNot FoundToo Many RequestsServer ErrorBad GatewayService UnavailableGateway TimeoutHTTP Version Not Supported
Session Expired
Your session has expired. Please log in to continue.
Sign in required
You need an account to do that. Sign in or create one — it only takes a minute.
Request Failed
We encountered an issue while processing your request.
Please check your internet connection and try again.
Error Details:
Share Link
Posts from A program for extracting game archives.
Is there a program that can unpack .lod files and convert their contents into something readable (in case the contents are not readable)? I've been searching the internet for two days and can't find anything. Please help if anyone knows. :smile17:
Kash
16 years ago
Auto-translated
Take a look here; maybe you'll find something useful:) /topic/1181/
Starl1ght
16 years ago
Auto-translated
Thank you very much! :)\
*quietly went to continue working on my Heroes-like game*
(I know the format, but the data in the archive is packed in an unclear way... :( if it's not gzip, please tell me what it is :( gzip doesn't unpack it :( it's strange that the data in .LOD files is packed with something other than gzip, if it's used in them (in Heroes) everywhere and always :confused: )
(I know the format, but the data in the archive is packed with something unclear... if it's not gzip, then tell me what it is gzip doesn't unpack it it's strange that the data in .LODs is packed with something other than gzip, if it is used in them (in Heroes) everywhere )
LOD data is packed using the DEFLATE algorithm, which is also used by the gzip program.
The LOD headers contain information about the file name, offset, and original compressed size.
At the offset, there is a DEFLATE-compressed file, and the first two bytes are the Zlib header (0x78, 0x9c), and the last four are the Adler-32 checksum. By discarding these 6 bytes, we get the DEFLATE-compressed information.
To convert to the *.gz format, you need to add 10 bytes of Gzip headers (0x1F 0x8B 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x0B) + the footer (at the end of the file): CRC-32 checksum (4 bytes) + uncompressed data size in bytes (4 bytes).
Все на земле боится времени, но время боится Героев Меча и Магии