Heroes Never Die .pak

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
hackspeedok
Posts: 404
Joined: Mon Oct 06, 2014 6:41 pm

Heroes Never Die .pak

Post by hackspeedok »

Ekey
Posts: 1383
Joined: Sat Aug 09, 2014 2:34 pm

Re: Heroes Never Die .pak

Post by Ekey »

Code: Select all

# Heroes Never Die (PAK/RES format)
# Written by Ekey (h4x0r)
#
# script for QuickBMS http://quickbms.aluigi.org

get NULL long
get VERSION long
get FILES long

for i = 0 < FILES
    get HASH long # BKDRHash
    get OFFSET long
    get ZSIZE long
    get SIZE long
   
    if ZSIZE == SIZE
       log "" OFFSET SIZE
    else
       clog "" OFFSET ZSIZE SIZE
    endif
next i


Also supported RES files.
hackspeedok
Posts: 404
Joined: Mon Oct 06, 2014 6:41 pm

Re: Heroes Never Die .pak

Post by hackspeedok »

Thanks Ekey :D Do you translate mobile game ? I always do with ios games.
But this game, where is the localization file ? Not the xml file. But i can't edit *.str files.
And how can i edit the font ? I want to mod the font supporting UTF-8 characters
Ekey
Posts: 1383
Joined: Sat Aug 09, 2014 2:34 pm

Re: Heroes Never Die .pak

Post by Ekey »

Maybe later i will update script for extract files with names.
hackspeedok
Posts: 404
Joined: Mon Oct 06, 2014 6:41 pm

Re: Heroes Never Die .pak

Post by hackspeedok »

Ekey wrote:Maybe later i will update script for extract files with names.

Hope soon