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

[REQ] Death Rally .bin [Remedy]

The Original Forum. Game archives, full of resources. How to open them? Get help here.
Gruselgurke
advanced
Posts: 72
Joined: Fri Mar 30, 2012 6:15 pm
Has thanked: 21 times
Been thanked: 2 times

[REQ] Death Rally .bin [Remedy]

Post by Gruselgurke »

A remake of the classic racer from DOS. It's made by Remedy who made Alan Wake.
The game files are all in "DeathRallyData_000.bin" but unlike Alan Wake everything is in the .bin instead of a combination of .bin and .rmdp. The bin files were only a few MB big in Alan Wake, the main data was in the .rmdp.
I can provide chunks of the file via PM if needed.
jioc01
ultra-n00b
Posts: 8
Joined: Sun Aug 05, 2012 1:14 pm
Has thanked: 5 times

Re: [REQ] Death Rally .bin [Remedy]

Post by jioc01 »

News for Extract this unknown format?
Ekey
M-M-M-Monster veteran
M-M-M-Monster veteran
Posts: 1823
Joined: Wed Mar 31, 2010 6:54 am
Has thanked: 92 times
Been thanked: 1058 times

Re: [REQ] Death Rally .bin [Remedy]

Post by Ekey »

Just XORed. Before XORing need rotate to left bytes.

Example for header :

1) Get original bytes - 99 88 B9 F9
2) Rotate to left bytes - 99 88 9B 9F
3) And XOR by 0xDA
4) Result - CRAE

For decrypted file:

Code: Select all

4 bytes - (CRAE)
4 bytes - Version
2 bytes - TotalFiles - 0x380 // ???
for each file:

Code: Select all

1 byte - NameSize
String - FileName
4 bytes - FileSize
@Edited.

Here script. Thx Haoose for posf code.

Code: Select all

idstring "CRAE"
get VERSION long
get FILES short
math FILES -= 0x380 # ???
math posf = 0xB143

for i = 0 < FILES
   get NSIZE byte
   getdstring NAME NSIZE
   get SIZE long
   log NAME posf SIZE
   math posf += SIZE
next i
Attached decryptor. Just copy in game folder and run DRBINDecrypt.bat. Wait until the decrypting is finished.
Output file -> DeathRallyData_000.bin.dec. After use script for unpack files :).
You do not have the required permissions to view the files attached to this post.
Last edited by Ekey on Sun Aug 05, 2012 10:25 pm, edited 4 times in total.
User avatar
delutto
veteran
Posts: 153
Joined: Sat Apr 16, 2011 5:20 am
Has thanked: 49 times
Been thanked: 14 times

Re: [REQ] Death Rally .bin [Remedy]

Post by delutto »

Ekey wrote:Attached decryptor. Just copy in game folder and run DRBINDecrypt.bat. Wait until the decrypting is finished.
Output file -> DeathRallyData_000.bin.dec. You can use any rippers to get graphic / sound .ect. files :)
BAT FIX. :D

Code: Select all

@echo off
color a
DRBINDecrypt.exe DeathRallyData_000.bin DeathRallyData_000.bin.dec
pause
Ekey
M-M-M-Monster veteran
M-M-M-Monster veteran
Posts: 1823
Joined: Wed Mar 31, 2010 6:54 am
Has thanked: 92 times
Been thanked: 1058 times

Re: [REQ] Death Rally .bin [Remedy]

Post by Ekey »

Ops yeah forgot add DRBINDecrypt :keke:
jioc01
ultra-n00b
Posts: 8
Joined: Sun Aug 05, 2012 1:14 pm
Has thanked: 5 times

Re: [REQ] Death Rally .bin [Remedy]

Post by jioc01 »

Thank you very much!! :D :D
Well, can i ask which software/ripper i will use for extract the DeathRallyData_000.bin.dec?

Sorry but i'm very newbie! :scaredy:
Ekey
M-M-M-Monster veteran
M-M-M-Monster veteran
Posts: 1823
Joined: Wed Mar 31, 2010 6:54 am
Has thanked: 92 times
Been thanked: 1058 times

Re: [REQ] Death Rally .bin [Remedy]

Post by Ekey »

Nova Software Extractor 2.5
Game Extractor
Dragon Unpacker
Ravioli Game Tools v2.5

Choose :)
User avatar
Haoose
mega-veteran
mega-veteran
Posts: 280
Joined: Tue Mar 01, 2011 9:34 pm
Has thanked: 70 times
Been thanked: 193 times
Contact:

Re: [REQ] Death Rally .bin [Remedy]

Post by Haoose »

Unpacker for DeathRallyData_000.bin.dec

http://www.mediafire.com/?e57im1ooi2d4rab

UPD:

Code: Select all

idstring "CRAE"
get VERSION long
get FILES short
math FILES -= 0x380 # ???
math posf = 0xB143

for i = 0 < FILES
   get NSIZE byte
   getdstring NAME NSIZE
   get SIZE long
   log NAME posf SIZE
   math posf += SIZE
next i
Last edited by Haoose on Sun Aug 05, 2012 7:04 pm, edited 1 time in total.
-= GP-team =-
Image
jioc01
ultra-n00b
Posts: 8
Joined: Sun Aug 05, 2012 1:14 pm
Has thanked: 5 times

Re: [REQ] Death Rally .bin [Remedy]

Post by jioc01 »

Haoose wrote:Unpacker for DeathRallyData_000.bin.dec

http://www.mediafire.com/?e57im1ooi2d4rab
OMG :D you are a god. Thanks a LOT.
Ekey wrote:Nova Software Extractor 2.5
Game Extractor
Dragon Unpacker
Ravioli Game Tools v2.5

Choose :)
Thank you very much ;)
Ekey
M-M-M-Monster veteran
M-M-M-Monster veteran
Posts: 1823
Joined: Wed Mar 31, 2010 6:54 am
Has thanked: 92 times
Been thanked: 1058 times

Re: [REQ] Death Rally .bin [Remedy]

Post by Ekey »

Haoose wrote:

Code: Select all

idstring "CRAE"
get VERSION long
get FILES short
math FILES -= 0x380 # ???
math posf = 0xB143

for i = 0 < FILES
   get NSIZE byte
   getdstring NAME NSIZE
   get SIZE long
   log NAME posf SIZE
   math posf += SIZE
next i
Nice :wink:
jioc01
ultra-n00b
Posts: 8
Joined: Sun Aug 05, 2012 1:14 pm
Has thanked: 5 times

Re: [REQ] Death Rally .bin [Remedy]

Post by jioc01 »

for i = 0 < FILES
get NSIZE byte
getdstring NAME NSIZE
get SIZE long
log NAME posf SIZE
math posf += SIZE
next i
What programming language it's?
User avatar
Haoose
mega-veteran
mega-veteran
Posts: 280
Joined: Tue Mar 01, 2011 9:34 pm
Has thanked: 70 times
Been thanked: 193 times
Contact:

Re: [REQ] Death Rally .bin [Remedy]

Post by Haoose »

jioc01 QuickBMS :D
-= GP-team =-
Image
jioc01
ultra-n00b
Posts: 8
Joined: Sun Aug 05, 2012 1:14 pm
Has thanked: 5 times

Re: [REQ] Death Rally .bin [Remedy]

Post by jioc01 »

Haoose wrote:jioc01 QuickBMS :D

aluigi.altervista.org/quickbms.htm <--- This?!?

I'm a very and big newbie!! lol
Ekey
M-M-M-Monster veteran
M-M-M-Monster veteran
Posts: 1823
Joined: Wed Mar 31, 2010 6:54 am
Has thanked: 92 times
Been thanked: 1058 times

Re: [REQ] Death Rally .bin [Remedy]

Post by Ekey »

jioc01 wrote: aluigi.altervista.org/quickbms.htm <--- This?!?

I'm a very and big newbie!! lol
Yep
Gruselgurke
advanced
Posts: 72
Joined: Fri Mar 30, 2012 6:15 pm
Has thanked: 21 times
Been thanked: 2 times

Re: [REQ] Death Rally .bin [Remedy]

Post by Gruselgurke »

Thanks a lot you two!
Post Reply