Join also our Discord channel! Click here.
Star Wars Episode III (PS2, .rp2 files)
Star Wars Episode III (PS2, .rp2 files)
Does anyone have a way of opening these? They contain the dialogue files: https://www.zenhax.com/download/file.ph ... 99f6bc48d4
- DKDave
- mega-veteran
- Posts: 218
- Joined: Mon May 06, 2019 6:07 pm
- Has thanked: 6 times
- Been thanked: 82 times
Re: Star Wars Episode III (PS2, .rp2 files)
The audio in that archive is all standard Playstation 4-bit ADPCM, so you can open and convert them with PSound - there are 103 audio files.
"Each person is born with their fate written into their own genetic code. It's unchangeable, immutable. But that's not all there is to life." - Dr. Naomi Hunter
- Acewell
- VIP member
- Posts: 1329
- Joined: Wed Nov 05, 2008 12:16 pm
- Has thanked: 2683 times
- Been thanked: 831 times
Re: Star Wars Episode III (PS2, .rp2 files)
here is bms script.

Code: Select all
# script for QuickBMS http://aluigi.altervista.org/quickbms.htm
get FOLDER basename
get UNK long
get FILES long
goto 0x18 0 seek_cur
for i = 0 < FILES
get NAME string
string NAME p "%s\%s.msv" FOLDER NAME
goto 0x19 0 seek_cur
get OFFSET long
get SIZE long
get UNK2 long
log NAME OFFSET SIZE
next i
Last edited by Acewell on Thu Jun 06, 2019 10:47 pm, edited 1 time in total.
-
- veteran
- Posts: 116
- Joined: Sat Apr 16, 2016 3:15 am
- Has thanked: 5 times
- Been thanked: 24 times
Re: Star Wars Episode III (PS2, .rp2 files)
Also a little side-note, if you replace this line in Acewell's script from:
to
That will extension the files to .msv which is playable with foobar + vgmstream component. 
Code: Select all
string NAME p "%s\%s" FOLDER NAME
Code: Select all
string NAME p "%s\%s.msv" FOLDER NAME

- Acewell
- VIP member
- Posts: 1329
- Joined: Wed Nov 05, 2008 12:16 pm
- Has thanked: 2683 times
- Been thanked: 831 times
Re: Star Wars Episode III (PS2, .rp2 files)
i was going to do this at first but decided against it because
i wasn't sure what proper extension these files should be.

i have edited the above script to add msv extension now that there is confirmation.
