Spartacus Legends .PAK files

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
mattzocrazy
Posts: 3
Joined: Thu Mar 16, 2017 1:37 am

Spartacus Legends .PAK files

Post by mattzocrazy »

Hey everyone! I could use some assistance in extracting the files from these .PAK files from "Spartacus: Legends"
Im quite certain the game runs on a modified version of the "Ego Engine" (DiRt Series, Operation Flashpoint Series, Formula 1 Series)
This is one of the files, Its got cutscene files (which i dont need but its the smallest file of this kind)
The other ones are 300MB and 1GB so imma just upload the smaller one.
If anyone could help me out and make a BMS script or something that would be fantastic!
Thx! -Matt

DL Link: https://mega.nz/#!C8JE0DhR!ulK-Qpzmkijc ... AKPEXACqxo
MerlinSVK
Posts: 165
Joined: Wed Aug 13, 2014 10:00 am

Re: Spartacus Legends .PAK files

Post by MerlinSVK »

Code: Select all

# Spartacus: Legends .PAK files
# Script for QuickBMS http://quickbms.aluigi.org
# By MerlinSVK @ 2018

endian big
get VERSION long
get FILES long

for i = 0 < FILES
    get FOFFSET long
    get FSIZE long
    get FNAME string
    savepos MYOFFSET
    strlen FNAMELEN FNAME
    xmath SKIP "(MYOFFSET - 0x01) + (0x80 - FNAMELEN)"
    log FNAME FOFFSET FSIZE
    goto SKIP
next i


Reimport and Reimport2 modes are supported.
mattzocrazy
Posts: 3
Joined: Thu Mar 16, 2017 1:37 am

Re: Spartacus Legends .PAK files

Post by mattzocrazy »

Thank you so much dude! ^u^
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: Spartacus Legends .PAK files

Post by aluigi »