Jump to content

Inferno: The Odyssey Continues (1994, MS-DOS)


petitcoq

Recommended Posts

Hello,

I'm currently having a look at the MS-DOS game “Inferno: The Odyssey Continues” to extract all of the 3D models.

The game isn't the best, but the 3D models as environments have a nice aesthetic.

No luck so far in getting my way into the game files. I hope this thread will maybe be used to show progress.

 

Gameplay videos (time set to 3D parts)

 

Edited by petitcoq
Adding tags
Link to comment
Share on other sites

  • 1 month later...

Here's a QuickBMS script I've put together to extract the content of the DID.DAT file.

No idea yet if the content of each file is encrypted. Other .DAT files require a different QuickBMS script that I haven't yet written.

# Inferno DAT
# script for QuickBMS http://aluigi.org

get OFFSET long
goto OFFSET
get NB_ELEMS short
get NB_DIRS short
get NB_FILES short
get TOTAL_LEN short

for i = 0 < NB_DIRS
  get LEN byte
  getdstring STRINGS[i] LEN
next i

for i = 0 < NB_FILES
  get LEN byte
  getdstring STRINGS2[i] LEN
next i

for i = 0 < NB_ELEMS
  get UNK long
  get FILE_OFFSET long
  get FILE_LEN long
  log i FILE_OFFSET FILE_LEN
next i

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...