[PC] Gunslayer Legend

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
godskin
Posts: 192
Joined: Sun Oct 04, 2015 2:27 am

[PC] Gunslayer Legend

Post by godskin »

new .upk don't work on umodel
ps.gildor don't want help

Alugi Pls

some .upk
https://mega.nz/#!ZcpWUAjB!9LyExI5eRVnd ... 6fRgRYI72w
Ekey
Posts: 1383
Joined: Sat Aug 09, 2014 2:34 pm

Re: [PC] Gunslayer Legend

Post by Ekey »

Encrypted header.
godskin
Posts: 192
Joined: Sun Oct 04, 2015 2:27 am

Re: [PC] Gunslayer Legend

Post by godskin »

Ekey wrote:Encrypted header.


you can ? Pls help pro ^ ^
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: [PC] Gunslayer Legend

Post by aluigi »

What if you skip the encrypted header and dump the various 0xc1832a9e chunks for manually checking them (because ueviewer doesn't load them)?

Code: Select all

idstring "AK\x9a\x87"
get SIZE long
getdstring DUMMY SIZE
get ARCHIVE_SIZE asize
do
    savepos OFFSET
    getdstring SIGN 4
    findloc NEXT_OFF binary "\xc1\x83\x2a\x9e" 0 ""
    if NEXT_OFF == ""
        math NEXT_OFF = ARCHIVE_SIZE
    endif
    xmath SIZE "NEXT_OFF - OFFSET"
    log "" OFFSET SIZE
    math OFFSET = NEXT_OFF
    goto OFFSET
while OFFSET != ARCHIVE_SIZE
It's not a solution but maybe it's useful in some situations.
godskin
Posts: 192
Joined: Sun Oct 04, 2015 2:27 am

Re: [PC] Gunslayer Legend

Post by godskin »

aluigi wrote:What if you skip the encrypted header and dump the various 0xc1832a9e chunks for manually checking them (because ueviewer doesn't load them)?

Code: Select all

idstring "AK\x9a\x87"
get SIZE long
getdstring DUMMY SIZE
get ARCHIVE_SIZE asize
do
    savepos OFFSET
    getdstring SIGN 4
    findloc NEXT_OFF binary "\xc1\x83\x2a\x9e" 0 ""
    if NEXT_OFF == ""
        math NEXT_OFF = ARCHIVE_SIZE
    endif
    xmath SIZE "NEXT_OFF - OFFSET"
    log "" OFFSET SIZE
    math OFFSET = NEXT_OFF
    goto OFFSET
while OFFSET != ARCHIVE_SIZE
It's not a solution but maybe it's useful in some situations.


don't work
godskin
Posts: 192
Joined: Sun Oct 04, 2015 2:27 am

Re: [PC] Gunslayer Legend

Post by godskin »

Bump