| Crates.io | horntail |
| lib.rs | horntail |
| version | 0.4.1 |
| created_at | 2025-08-01 17:55:07.954877+00 |
| updated_at | 2025-08-08 01:53:51.648525+00 |
| description | maplestory resource file unpack lib |
| homepage | |
| repository | https://github.com/anonymous5l/horntail |
| max_upload_size | |
| id | 1777200 |
| size | 171,781 |
Simple parse maplestory resource file lib supported wz & ms file extension.
more extension feature
use cache load Curse.img collection
fn main() {
let entry = Entry::from_path(
"<Your Resource Path>/Base",
MapleTableNone.into_boxed(), // your resource cipher
MapleVersion::from(79), // your resource version
false,
)
.unwrap_or_else(|e| panic!("load: {e}"))
.into_cache();
let curse_strs = entry.get_by_path_exact("Etc/Curse.img").to::<Vec<String>>();
println!("{:?}", curse_strs);
}