Here is a half-assed RSDKvB unpacker that I threw together in an hour:
http://projects.sapp...vB_unpacker.zip
It will unpack all of the files in a Data.rsdk that don't have the encryption flag set in the file table. Ogg vorbis files will be named with an .ogg extension, everything else with bin. Real filenames are not available at this time, because everyone is probably interested in the music files anyway.
This is a command-line tool.
RSDKvB file format. All numerical values little endian
Header "RSDKvB" text
0x6 - 16 bit number of files in archive
0x8 - Start of files
Files: (Each entry is 24 bytes)
0x00-0x10 Filename "hash"
0x10 - 32-bit offset of file in archive
0x14 - 32-bit file size which must be & with 0x7FFFFFF. MSB is the encryption flag, if set file is encrypted.
Enjoy. Feel free to point out any mistakes.