Jump to content

Shark Tale (GameCube/PS2/Xbox) .arc files


Recommended Posts

I looked online for some way to extract the data from the arc files of the Shark Tale game for GameCube

 

Game Extractor says it's able to extract the files from the Over the Hedge game which was made by the same developers. I tried both Shark Tale and Over the Hedge files and it didn't work.

I put the datasets.arc file on Google Drive if anyone knows how I can deal with this

Link to comment
Share on other sites

  • Engineer
Posted (edited)

Try this

#Shark Tale (GameCube/PS2/Xbox) .arc files

get OFFSET long
goto OFFSET
endian big
get FILES long
for i = 0 < FILES
    get SOME_CRC long
    get INFO_OFF long
    get SIZE long
    get NAME string     # resource name
    get SOME_CRC long
    get DUMMY long
    get SOME_CRC long


    savepos TMP
    math tmp - 4
    goto INFO_OFF

    savepos OFFSET
    xmath SIZE "SIZE - (OFFSET - INFO_OFF)"
    log NAME OFFSET SIZE
    goto TMP
next i

 

Edited by Rabatini
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...