Important information: this site is currently scheduled to go offline indefinitely by end of the year.

No More Heroes: Heroes' Paradise

The Original Forum. Game archives, full of resources. How to open them? Get help here.
Post Reply
chrrox
Moderator
Posts: 2602
Joined: Sun May 18, 2008 3:01 pm
Has thanked: 57 times
Been thanked: 1422 times

No More Heroes: Heroes' Paradise

Post by chrrox »

Here is a texture extractor and converter i made for the Japanese version of this game.
I will work on a model converter with bones next.
Run this on the file PS3_TEXTURES.FPD

Code: Select all

set i 1
endian big
for i
findloc start string \x02\x01\x00\xFF
goto start
get null long
get size long
math size + 0x40
set name i
string name + .tex
log name start size
math start + size
goto start
next i
this will extract the tex files.
now this next script converts those to dds

Code: Select all

set MEMORY_FILE binary "\x44\x44\x53\x20\x7C\x00\x00\x00\x07\x10\x0A\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x20\x00\x00\x00\x05\x00\x00\x00\x44\x58\x54\x31\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x08\x10\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
endian big
get name basename
string name + .dds
get size asize
set size2 size
math size2 - 0x80
goto 0x20
get width short
get height short
goto 0x18
get type byte
endian little
if type == 0x86
putVarChr MEMORY_FILE 0x57 0x31 byte
endif
if type == 0x87
putVarChr MEMORY_FILE 0x57 0x33 byte
endif
if type == 0x88
putVarChr MEMORY_FILE 0x57 0x35 byte
endif
putVarChr MEMORY_FILE 0xC height short
putVarChr MEMORY_FILE 0x10 width short
append
log MEMORY_FILE 0x80 size2
append
log name 0 size MEMORY_FILE
Image
You do not have the required permissions to view the files attached to this post.
sal
ultra-n00b
Posts: 1
Joined: Sun Sep 11, 2011 10:01 am

Re: No More Heroes: Heroes' Paradise

Post by sal »

Very impressive, good work !
qs12
veteran
Posts: 92
Joined: Sat Sep 21, 2019 12:55 am
Has thanked: 44 times
Been thanked: 13 times

Re: No More Heroes: Heroes' Paradise

Post by qs12 »

Where is the PS3_TEXTURES.FPD???
Lys
ultra-n00b
Posts: 2
Joined: Mon Jun 08, 2015 12:16 pm
Has thanked: 5 times

Re: No More Heroes: Heroes' Paradise

Post by Lys »

qs12 wrote: Wed Jun 24, 2020 6:30 am Where is the PS3_TEXTURES.FPD???
It's in the USRDIR folder of the Japanese version.

Folder structure went something like BLJS10072 > PS3_GAME > USRDIR > PS3_Textures.FPD
Post Reply