World of Subways 4 uses a different kind of archive than the previous titles. I've written an in-progress script but I'm unable to get the offsets. Here is a sample archive: http://*USE_ANOTHER_FILEHOSTING*/d355d84 ... ameData.7z
And this is my script so far. I have no idea what the three unknown fields are for - somewhere has got to be the offset and size but I just can't figure it out. :\
Anyway:
Code: Select all
get INFO long
math INFO += 4
for i = 0 # only for number_of_files retrieval...
get NAME string
savepos MYOFF
if MYOFF == INFO
break
endif
next i
set FILES i
for i = 0 < FILES
get CRC long
get NAMEPOS long
math NAMEPOS += 4
savepos MYOFF
goto NAMEPOS
get NAME string
goto MYOFF
get UNK1 long
get UNK2 long
get UNK3 long
next i