Help with extracting Chicken Invaders for android

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
KASaLEX
Posts: 5
Joined: Tue Oct 31, 2017 1:31 pm

Help with extracting Chicken Invaders for android

Post by KASaLEX »

I want to extract chicken invaders 4-5 (hq2x) files to edit
Scripts interactionstudios.bms and chicken_invaders_universe.bms do not work with the archives of the mobile version of the game!
I ask for help
KASaLEX
Posts: 5
Joined: Tue Oct 31, 2017 1:31 pm

Re: Help with extracting Chicken Invaders for android

Post by KASaLEX »

https://drive.google.com/file/d/10JBP2N ... p=drivesdk
Here's another game file that exactly contains graphics and sound
Acewell
Posts: 706
Joined: Fri Aug 08, 2014 1:06 am

Re: Help with extracting Chicken Invaders for android

Post by Acewell »

try this bms script. :D

Code: Select all

# script for QuickBMS http://aluigi.altervista.org/quickbms.htm

get FOLDER basename
get UNK long
get FILES long
for i = 0 < FILES
    getdstring UNK 0x50
    get OFFSET long
    get SIZE long
    get ZSIZE long
    string NAME p "%s\%d." FOLDER i
    if ZSIZE == SIZE
        log NAME OFFSET SIZE
    else
        clog NAME OFFSET ZSIZE SIZE
    endif
next i