Important information: this site is currently scheduled to go offline indefinitely by end of the year.

Lod of pick .pak file.

The Original Forum. Game archives, full of resources. How to open them? Get help here.
Post Reply
dongdong
n00b
Posts: 14
Joined: Mon Sep 28, 2009 4:50 am
Has thanked: 1 time

Lod of pick .pak file.

Post by dongdong »

I am looking for a unpacker for the pak files in the game GearGrinder.I'm not sure if I need to repack the files.
Some body knows how to unpack those files? Or a tool that can unpack those files?
I uploaded some pak files, hope some body can try it.

http://www.yourfilelink.com/get.php?fid=509577
http://www.yourfilelink.com/get.php?fid=509576
User avatar
aluigi
VVIP member
VVIP member
Posts: 1916
Joined: Thu Dec 08, 2005 12:26 pm
Location: www.ZENHAX.com
Has thanked: 4 times
Been thanked: 664 times
Contact:

Re: Lod of pick .pak file.

Post by aluigi »

Code: Select all

# Gear Grinder
# script for QuickBMS http://aluigi.org/papers.htm#quickbms

idstring "PK\x01\x09"
get INFO_OFF long
goto INFO_OFF

get PAKSIZE asize
for
    if INFO_OFF >= PAKSIZE
        cleanexit
    endif
    get DUMMY long
    get DUMMY long
    get ZIP byte
    get DUMMY long
    get NAMESZ short
    getdstring UNAME NAMESZ
    set NAME unicode UNAME
    get SIZE long
    get ZSIZE long
    get OFFSET long
    savepos INFO_OFF

    math OFFSET += 22
    if ZIP == 0
        log NAME OFFSET SIZE
    else
        clog NAME OFFSET ZSIZE SIZE
    endif
next
can you confirm that the correct name of the game is Gear Grinder?
dongdong
n00b
Posts: 14
Joined: Mon Sep 28, 2009 4:50 am
Has thanked: 1 time

Re: Lod of pick .pak file.

Post by dongdong »

Bugtest wrote:

Code: Select all

# Gear Grinder
# script for QuickBMS http://aluigi.org/papers.htm#quickbms

idstring "PK\x01\x09"
get INFO_OFF long
goto INFO_OFF

get PAKSIZE asize
for
    if INFO_OFF >= PAKSIZE
        cleanexit
    endif
    get DUMMY long
    get DUMMY long
    get ZIP byte
    get DUMMY long
    get NAMESZ short
    getdstring UNAME NAMESZ
    set NAME unicode UNAME
    get SIZE long
    get ZSIZE long
    get OFFSET long
    savepos INFO_OFF

    math OFFSET += 22
    if ZIP == 0
        log NAME OFFSET SIZE
    else
        clog NAME OFFSET ZSIZE SIZE
    endif
next
can you confirm that the correct name of the game is Gear Grinder?
Yes,thanks very much.
Sheen
beginner
Posts: 25
Joined: Tue Mar 02, 2010 7:29 pm
Has thanked: 8 times
Been thanked: 3 times

Re: Lod of pick .pak file.

Post by Sheen »

I tried to use this bms script in Gear Grinder's "lockit.pak" and I get the following message error:

"signature doesn't match the one expected by the script"
This one: "KAPT"
expected: "PK(simbol) "

Here is head and tail of lockit.pak:

http://www.mediafire.com/?cgbz3a49j5oje7q

Help would be much appreciated.

Regards.
User avatar
XRaptor
mega-veteran
mega-veteran
Posts: 226
Joined: Sat Jul 12, 2008 4:42 pm
Location: Prague
Has thanked: 6 times
Been thanked: 47 times
Contact:

Re: Lod of pick .pak file.

Post by XRaptor »

Still looking for extractor for 'KAPT' files?
Post Reply