Arcana Hearts [*.ENC]

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
ThatTrueStruggle
Posts: 20
Joined: Tue Nov 17, 2015 12:11 am

Arcana Hearts [*.ENC]

Post by ThatTrueStruggle »

I have a file that looks like it's a compressed archive, could anyone help out?
Sample: https://www.dropbox.com/s/v6kglp6jxdzk7 ... 0.ENC?dl=0
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: Arcana Hearts [*.ENC]

Post by aluigi »

It doesn't seem compressed, it seems graphics stuff.

Code: Select all

idstring "COMPRESSED"
getdstring ZERO 6
get ENC_SIZE asize
for FILES = 0
    get OFFSET long
    putarray 0 -1 OFFSET
    if OFFSET >= ENC_SIZE
        break
    endif
next FILES
for i = 0 < FILES
    getarray OFFSET 0 i
    math i + 1
    getarray SIZE   0 i
    math SIZE - OFFSET
    if SIZE != 0
        log "" OFFSET SIZE
    endif
next
ThatTrueStruggle
Posts: 20
Joined: Tue Nov 17, 2015 12:11 am

Re: Arcana Hearts [*.ENC]

Post by ThatTrueStruggle »

Thanks a lot! I figured it had to do with graphics and archives, but I wasn't sure :P