Skip to content

Latest commit

 

History

History

libeq_archive

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

eq_archive

An Everquest archive file extractor

This has only been tested on .s3d files and implements only the bare minimum of functionality. CRC checks for example are completely ignored.

Examples

let archive = eq_archive::read("gfaydark.s3d").unwrap();

// List all files in the archive
let filenames = archive.filenames();

// Iterate over files in the archive
for (name, data) in archive.files() {

}