Rayman Legends PS4 (*.ipk)

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
shadow_lonely
Posts: 216
Joined: Mon Oct 06, 2014 3:30 am

Rayman Legends PS4 (*.ipk)

Post by shadow_lonely »

Hello everyone!
Could anyone help me unpack ipk file on PS4, please? I used this bms script and it worked on PC, PS3, Xbox 360 and Wii U, but PS4 isnt working. Thanks!

Code: Select all

# Rayman Legends (Xbox 360)
# script for QuickBMS http://quickbms.aluigi.org

endian big
goto 0xc
get BASE_OFF long
goto 0x2c
get FILES long
for i = 0 < FILES
    get DUMMY1 long
    get SIZE long
    get ZSIZE long
    get TSTAMP longlong
    get OFFSET longlong
    if DUMMY1 == 2
        get DUMMY4 long
        get DUMMY5 long
    endif
    get FOLDERSZ long
   getdstring FOLDER FOLDERSZ
   get NAMESZ long
   getdstring NAME NAMESZ
   string FOLDER + NAME
   string NAME = FOLDER
    math OFFSET += BASE_OFF
    if ZSIZE == 0
        log NAME OFFSET SIZE
    else
        clog NAME OFFSET ZSIZE SIZE
    endif
   get DUMMY6 long
   get DUMMY7 long
next i

bms script base from aluigi worked on PC, PS3, Xbox360 and WiiU

Some example on PS4: https://drive.google.com/drive/folders/ ... sp=sharing
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: Rayman Legends PS4 (*.ipk)

Post by aluigi »

Where you got that script?
My IPK script is here:
http://aluigi.org/bms/rayman_origins.bms
shadow_lonely
Posts: 216
Joined: Mon Oct 06, 2014 3:30 am

Re: Rayman Legends PS4 (*.ipk)

Post by shadow_lonely »

I got that script from http://forum.xentax.com/viewtopic.php?f=10&t=10690.
aluigi wrote:Where you got that script?
My IPK script is here:
http://aluigi.org/bms/rayman_origins.bms

Thanks, this script worked for me.
bxaimc
Posts: 41
Joined: Thu Nov 16, 2017 7:11 pm

Re: Rayman Legends PS4 (*.ipk)

Post by bxaimc »

Hi, I found another ipk that doesn't work with the script. Would you mind checking it out for me please? Thanks!

https://drive.google.com/open?id=1Be9wpWdL_kXv5psxO1X0bgRol3KPmiIH
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: Rayman Legends PS4 (*.ipk)

Post by aluigi »

Script 0.2.5.
I added a lame work-around that did the job in few seconds :D
bxaimc
Posts: 41
Joined: Thu Nov 16, 2017 7:11 pm

Re: Rayman Legends PS4 (*.ipk)

Post by bxaimc »

Thanks again.