[MH4U] 3DS how to extract .arc files?

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
BadhornStadnent
Posts: 7
Joined: Sat May 28, 2016 10:19 pm

[MH4U] 3DS how to extract .arc files?

Post by BadhornStadnent »

I'm wondering if there is a script that can extract MH4U 3ds .arc files?

I've tried ARCtool it didn't work or I didn't use it right.

I tried to use python scripts, but I don't know how to use those. like mhff
ThatTrueStruggle
Posts: 20
Joined: Tue Nov 17, 2015 12:11 am

Re: [MH4U] 3DS how to extract .arc files?

Post by ThatTrueStruggle »

Code: Select all

comtype COMP_UNZIP_DYNAMIC
idstring "ARC\x00"
get UNK short
get FCOUNT short
get NULL long
 
for i = 0 < FCOUNT
   getdstring NAME 0x40
    get NULL long
    get SIZE long
    get UNK long
    get OFFSET long
    clog NAME OFFSET SIZE SIZE
next i


This format is like the Wii U's format, but it's a little endian variation of it. You can find my original script here: http://pastebin.com/ZeZvxxxy
BadhornStadnent
Posts: 7
Joined: Sat May 28, 2016 10:19 pm

Re: [MH4U] 3DS how to extract .arc files?

Post by BadhornStadnent »

Thanks
But now I have these .tex files, so is there a script that can convert these 3ds .tex files into a image format?