August 5, 2025Aug 5 Localization Hello, all! I was looking into ripping the assets from a very old Xbox party game called "Whacked!", the game has a special charm to it and always wanted to get a closer look at the models. As far as I can tell - the models/animations/bitmaps/sounds are kept in either .PAK files or .STR files. Any clue how to export the bundles / get a hold of the models/anims/textures? Thank you so much for your time!! 🫣 Whacked File Samples.rar
August 5, 2025Aug 5 37 minutes ago, Pepsee said: Hello, all! I was looking into ripping the assets from a very old Xbox party game called "Whacked!", the game has a special charm to it and always wanted to get a closer look at the models. As far as I can tell - the models/animations/bitmaps/sounds are kept in either .PAK files or .STR files. Any clue how to export the bundles / get a hold of the models/anims/textures? Thank you so much for your time!! 🫣 Whacked File Samples.rar 2.5 MB · 1 download You can extract the pak files with this QuickBMS script. The .str files look like audio data. Models are probably in another archive. pak.zip
August 5, 2025Aug 5 Author Localization 20 minutes ago, DKDave said: You can extract the pak files with this QuickBMS script. The .str files look like audio data. Models are probably in another archive. pak.zip 324 B · 0 downloads Script works like a charm! Curious however as it seems a lot of data is nowhere to be found - I can find only the victory/defeat anims of the characters however I have no clue where the shared models/anims are... The Bitmaps seem to be in .SCB format There are indeed mostly sounds in the STR bundles but there's genuinely no other place the assets can be except here... I even checked the levels, they are split as such: So they are definitely storing data other than just sounds in these bundles considering they have a dedicated Snd path. Bitmap Samples.rar Global.rar Edited August 5, 2025Aug 5 by Pepsee
August 5, 2025Aug 5 Localization 31 minutes ago, Pepsee said: Script works like a charm! Curious however as it seems a lot of data is nowhere to be found - I can find only the victory/defeat anims of the characters however I have no clue where the shared models/anims are... The Bitmaps seem to be in .SCB format There are indeed mostly sounds in the STR bundles but there's genuinely no other place the assets can be except here... I even checked the levels, they are split as such: So they are definitely storing data other than just sounds in these bundles considering they have a dedicated Snd path. Bitmap Samples.rar 159.51 kB · 0 downloads Global.rar 5.48 MB · 0 downloads Global.str seems to have a SCB header not sure what that means maybe a .scb file or something? but the GOH_Hed.str file is most definetly a audio file of sorts
August 5, 2025Aug 5 It looks like the geometry data and models are mostly in the .str files as well. So .str seems to contain not just sound, but also bitmaps, models and any other data. Not sure how to unpack them at the moment though. .SCB are the image files - so for example, Global\bitmaps\bitmaps.pak has over 1000 images in there.
August 6, 2025Aug 6 Author Localization On 8/5/2025 at 11:50 PM, DKDave said: It looks like the geometry data and models are mostly in the .str files as well. So .str seems to contain not just sound, but also bitmaps, models and any other data. Not sure how to unpack them at the moment though. .SCB are the image files - so for example, Global\bitmaps\bitmaps.pak has over 1000 images in there. Any clue as to what image format they are to convert?
August 6, 2025Aug 6 29 minutes ago, Pepsee said: The .scb ones seem to be DXT3 format from the few I've tested, although I'm not sure if they all are. There are also several images in each scb file, so it would need a proper script to pull them all out. The .scb files don't seen to store image dimensions, so not sure where they would be, making it tricky to do a proper script. There are other image formats in the .str files, some of which seem to be RGBA. A quick example of 4 images from Net_Feedback_BG.scb, which the game obviously combines into 1 image:
August 18, 2025Aug 18 Author Localization On 8/7/2025 at 1:00 AM, DKDave said: The .scb ones seem to be DXT3 format from the few I've tested, although I'm not sure if they all are. There are also several images in each scb file, so it would need a proper script to pull them all out. The .scb files don't seen to store image dimensions, so not sure where they would be, making it tricky to do a proper script. There are other image formats in the .str files, some of which seem to be RGBA. A quick example of 4 images from Net_Feedback_BG.scb, which the game obviously combines into 1 image: Hey!! Have there been any progressions for the file format by chance?
Create an account or sign in to comment