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)
Farming simulator 15 (ps3) *.pak
-
- Site Admin
- Posts: 12984
- Joined: Wed Jul 30, 2014 9:32 pm
Re: Farming simulator 15 (ps3) *.pak
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.
The reimport feature of quickbms works only with some archives and games, FS15 is not one of them.
-
- Posts: 6
- Joined: Fri Oct 03, 2014 3:36 pm
Re: Farming simulator 15 (ps3) *.pak
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