How do I extract the tm2 textures from the Gundam NEXT pzz file?

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
Shou_Titor
Posts: 4
Joined: Tue Dec 28, 2021 12:07 am

How do I extract the tm2 textures from the Gundam NEXT pzz file?

Post by Shou_Titor »

This is a file extracted from GVSG_AFS.AFS in the HDD of the PS2 compatible System256 PCB Gundam vs Gundam NEXT.
Does anyone know how to extract and decompress the compressed tm2 file from the pzz file?

https://mega.nz/file/hwMkSDjT#bVsxmo_72 ... r1pHhYMrhg
BloodRaynare
Posts: 367
Joined: Fri Mar 10, 2017 7:23 am

Re: How do I extract the tm2 textures from the Gundam NEXT pzz file?

Post by BloodRaynare »

There's already a tool for this purpose:
https://github.com/infval/pzzcompressor_jojo

EDIT: Hmm, this looks different than the Capcom's usual PZZ file. This one needs an additional scripts to unpack the files inside first. Give me some time, I'll have to investigate it.
Shou_Titor
Posts: 4
Joined: Tue Dec 28, 2021 12:07 am

Re: How do I extract the tm2 textures from the Gundam NEXT pzz file?

Post by Shou_Titor »

I managed to extract the rengouvsZAFT2, which replaced the Gundam NEXT texture, by runningpcsx2 and dumping it with texmod.

However, this method is very time consuming.
rabatini
Posts: 179
Joined: Tue Jan 18, 2022 12:21 am

Re: How do I extract the tm2 textures from the Gundam NEXT pzz file?

Post by rabatini »

your file is offline.
Shou_Titor
Posts: 4
Joined: Tue Dec 28, 2021 12:07 am

Re: How do I extract the tm2 textures from the Gundam NEXT pzz file?

Post by Shou_Titor »

rabatini wrote:your file is offline.


Sorry. I've re-uploaded it.
https://mega.nz/file/o4EWnJiR#QL_oFBG_n ... aOlTNyjpjA

GUNDAM NEXT All texture files
https://mega.nz/file/IlEQXTAQ#VIfhD87AP ... fa-z3OcfGE
rabatini
Posts: 179
Joined: Tue Jan 18, 2022 12:21 am

Re: How do I extract the tm2 textures from the Gundam NEXT pzz file?

Post by rabatini »

I dont understand wxactly what do you want.
but.

Code: Select all

IDString "AFS"
GET LIXO BYTE
Get ENTRIES Long

For RIP = 1 To ENTRIES
Get OFFSET Long
Get SIZE Long

log "" offset size

Next RIP


this script extract all files from AFS
Shou_Titor
Posts: 4
Joined: Tue Dec 28, 2021 12:07 am

Re: How do I extract the tm2 textures from the Gundam NEXT pzz file?

Post by Shou_Titor »

rabatini wrote:I dont understand wxactly what do you want.
but.

Code: Select all

IDString "AFS"
GET LIXO BYTE
Get ENTRIES Long

For RIP = 1 To ENTRIES
Get OFFSET Long
Get SIZE Long

log "" offset size

Next RIP


this script extract all files from AFS


The pzz file in GVGS_AFS.AFS contains a TIM2 file, but it is compressed and I want to decompress it.