Page 1 of 1

Bounty Hounds Online (*.PAK)

Posted: Sat Jul 05, 2014 8:45 pm
by Ekey
Image

Official Site: here
Download: here
Screenshots: here

Code: Select all

# Bounty Hounds Online (PAK format)
# 
# Written by Ekey (h4x0r)
# http://forum.xentax.com
# 
# script for QuickBMS http://quickbms.aluigi.org

comtype lzma_dynamic

goto 0x8
get FILES short
goto 0xC

for i = 0 < FILES
    getdstring NAME 32
    getdstring HASH 16
    get ZASIZE long
    get OFFSET long
    get SIZE long
    get ZSIZE long
    math OFFSET += 1
    math ZSIZE -= 1
    if ZSIZE == SIZE
        log NAME OFFSET SIZE
    else
        clog NAME OFFSET ZSIZE SIZE
    endif
next i