Farming simulator 15 (ps3) *.pak

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
tywony
Posts: 6
Joined: Fri Oct 03, 2014 3:36 pm

Farming simulator 15 (ps3) *.pak

Post by tywony »

Hello
with quickbms and giants_software.bms
I can extract http://www.mediafire.com/download/55f6g7lkgy7q10q/sameFortis190.i3d.pak.
I would like to create my own pak file
(Sorry for my bad English)
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: Farming simulator 15 (ps3) *.pak

Post by aluigi »

I'm not aware of rebuilders for this game/engine.
The reimport feature of quickbms works only with some archives and games, FS15 is not one of them.
tywony
Posts: 6
Joined: Fri Oct 03, 2014 3:36 pm

Re: Farming simulator 15 (ps3) *.pak

Post by tywony »

Here is the part of the script decompresses the archive if anyone is interested to create a rebuilder, I thank him.

Code: Select all

# GIANTS Software GAR archives (script 0.3.2)
#   Farming Simulator 2009/2011/2013/2015
#   Demolition Company
#   Ski Region Simulator
#   various mods
# script for QuickBMS http://quickbms.aluigi.org

idstring "PACK"
comtype lzma
get DUMMY long
get FILES long
for i = 0 < FILES
   get OFFSET longlong
    get ZIP long
    get SIZE long
    get ZSIZE long
    getdstring NAME 0x1ec
    if ZIP == 0
      log NAME OFFSET SIZE
    else
      clog NAME OFFSET ZSIZE SIZE
    endif
next i
cleanexit