Halo Online Resources.dat

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
sleepyzay
Posts: 40
Joined: Mon Sep 15, 2014 5:13 am

Halo Online Resources.dat

Post by sleepyzay »

After a little digging I was able to find this game. I would take a crack at writing an importer for the models but my skills at quickbms fall short. The help would be grand. Please excuse the large file sizes.

https://mega.co.nz/#F!kg5nHaJD!q5OhCx_3QemO3Bz0EEV08g
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: Halo Online Resources.dat

Post by aluigi »

I don't understand if the files are compressed, anyway you can dump them with the following script:

Code: Select all

get ZERO long
get INFO_OFF long
get FILES long
goto INFO_OFF
    get OFFSET long
for i = 1 <= FILES
    if i == FILES
        math NEXT_OFFSET = INFO_OFF
    else
        get NEXT_OFFSET long
    endif
    if NEXT_OFFSET != 0xffffffff
        xmath SIZE "NEXT_OFFSET - OFFSET"
        log "" OFFSET SIZE
        math OFFSET = NEXT_OFFSET
    endif
next i