(HELP) PACK extract

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
zsq_5
Posts: 1
Joined: Mon Aug 29, 2016 3:13 pm

(HELP) PACK extract

Post by zsq_5 »

I want to get CGs from hadaka shitsuji (pc game).

Can somebody help me to extract pack file?

This file is too big, so i used filecutted bms.

https://www.dropbox.com/s/3ilot4sh6b59c ... ta.7z?dl=0

(I can upload the original file, if you want)
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: (HELP) PACK extract

Post by aluigi »

The format is simple but I can't know what encryption it uses.

Code: Select all

idstring "KCAP"
get FILES long
for i = 0 < FILES
    getdstring NAME 0x40
    get SOME_CRC long
    get SOME_CRC long
    get OFFSET long
    get SIZE long
    get DUMMY long  # ever 1
    log NAME OFFSET SIZE
next i