Alien On The Run (3DS)

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
ThatOtherSiteKappa
Posts: 49
Joined: Fri Dec 23, 2016 3:00 am

Alien On The Run (3DS)

Post by ThatOtherSiteKappa »

It uses FARC but none of the current FARC scripts work, here are a few samples https://mega.nz/#!hgg3AR4b!0c5d9BXx-WeR ... FbwR_6kRgI
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: Alien On The Run (3DS)

Post by aluigi »

Code: Select all

comtype lz77wii
idstring "FARC"
get VER long    # 3
get BIN_SIZE long
get FILES long
get INFO_SIZE long
for i = 0 < FILES
    get ZIP long
    get OFFSET long
    get ZSIZE long
    get SIZE long
    if ZIP == 0
        log "" OFFSET SIZE
    else
        clog "" OFFSET ZSIZE SIZE
    endif
next i
ThatOtherSiteKappa
Posts: 49
Joined: Fri Dec 23, 2016 3:00 am

Re: Alien On The Run (3DS)

Post by ThatOtherSiteKappa »

Thanks