tpek Posted September 1, 2011 Report Share Posted September 1, 2011 Hello. Im working on multi offset extraction #include <File.au3> #include <Array.au3> #include <StaticConstants.au3> #include <String.au3> $f = @ScriptDir & "\a.res" $size = FileGetSize($f) $file = FileOpen($f, 0) $chars = FileRead($file, $size) $Hex = _StringToHex($chars) MsgBox(0,"f", $Hex) $DD = _ReadOffsets($Hex, "FFFFFF") _ArrayDisplay($DD, "D") Func _ReadOffsets($Data, $Value) $counter = 1 Dim $A[2] While Stringinstr($Data, $Value, 0, $counter) <> 0 $pos = "0x" & Hex(Stringinstr($Data, $Value, 0, $counter)/2) Redim $A[$counter+1] $A[$counter] = $pos $counter += 1 WEnd $A[0] = $counter-1 Return $A EndFunc This code give us Array with 0 element:Number of founded offsets next elements: Offsets in Hex Example: [0]|21 [1]|0x00000239 [2]|0x0000047F [3]|0x0000048F [4]|0x000004FD [5]|0x000005DF [6]|0x00000611 [7]|0x000042D4 [8]|0x000042ED [9]|0x000042F1 [10]|0x000042F6 [11]|0x0000498F [12]|0x0000697F [13]|0x00006BAA [14]|0x0000704B [15]|0x00007EE4 [16]|0x0000806E [17]|0x00008072 [18]|0x000082D0 [19]|0x000082D4 [20]|0x000084F7 [21]|0x000084FB Quote Link to comment Share on other sites More sharing options...
wetpaint Posted September 17, 2011 Report Share Posted September 17, 2011 Can someone please post a download link to all the sound files? I do not own a xbox version of bc2 so I can't do it myself Please help! I really want these files. Quote Link to comment Share on other sites More sharing options...
KENNITHH Posted November 24, 2014 Report Share Posted November 24, 2014 (edited) I'm also interested in this, there has been a pack online but it has been removed. This one was also recorded ingame. I am capable of getting the res files in wav format. The fire sounds are in .wave format, if you adjust their header and rename them to res, they tend to work, but not all of them (the ones I need ) - my mistake, easy peasy Edited November 24, 2014 by KENNITHH Quote Link to comment Share on other sites More sharing options...
Crazy--Coyote Posted May 12, 2017 Report Share Posted May 12, 2017 I know its like 2017, but if anybody still follows this thread, i am in the process of building the weapon sounds from the extracted contents. im also seperating the Foley sounds (reloads, grenades, etc.) and putting those together. if anybody is interested in these, PM me. Quote Link to comment Share on other sites More sharing options...
rockypocky Posted July 10, 2017 Report Share Posted July 10, 2017 On 5/13/2017 at 0:53 AM, Crazy--Coyote said: I know its like 2017, but if anybody still follows this thread, i am in the process of building the weapon sounds from the extracted contents. im also seperating the Foley sounds (reloads, grenades, etc.) and putting those together. if anybody is interested in these, PM me. Yes! I'm definately interested because bc2 had the most awesome sounds. I want the soldier reaction sounds rather than weapons. That whiny US sniper voice...was awesome.. If you torrent the package, I can help you spread with uploads. add me on steam please for discussion http://steamcommunity.com/id/nondata/ Quote Link to comment Share on other sites More sharing options...
spennser Posted June 20, 2019 Report Share Posted June 20, 2019 On 7/10/2017 at 6:50 AM, rockypocky said: Yes! I'm definately interested because bc2 had the most awesome sounds. I want the soldier reaction sounds rather than weapons. That whiny US sniper voice...was awesome.. If you torrent the package, I can help you spread with uploads. add me on steam please for discussion http://steamcommunity.com/id/nondata/ Let me know if you ever got them! Quote Link to comment Share on other sites More sharing options...
Timb3rwolf Posted November 27, 2020 Report Share Posted November 27, 2020 It's been 10 years since this thread which started with the xBox gamefiles. I have perfect and easy to use tools to extract .fbrb files. The thing is "Is this possible with the PC files?" If yes, I'd love to know and help us all to complete this with 100% satisfaction. Timb3rwolf Quote Link to comment Share on other sites More sharing options...
soundsarelife123 Posted January 5, 2021 Report Share Posted January 5, 2021 Can anyone in here do the same for Battlefield Bad Company 1? specifically I am looking for the M1A2 Abrams engine sounds; starting up, idle, when moving etc. These sounds were also used in the Bad Company 2 Closed Beta on the PS3. I never knew how to extract these sounds. Thank you so much if someone actually cares to help me out here, been trying to find something for a decade. Quote Link to comment Share on other sites More sharing options...
Neyxos Posted January 10, 2021 Report Share Posted January 10, 2021 (edited) On 11/27/2020 at 9:19 PM, Timb3rwolf said: It's been 10 years since this thread which started with the xBox gamefiles. I have perfect and easy to use tools to extract .fbrb files. The thing is "Is this possible with the PC files?" If yes, I'd love to know and help us all to complete this with 100% satisfaction. No. On 1/5/2021 at 5:40 PM, soundsarelife123 said: Can anyone in here do the same for Battlefield Bad Company 1? specifically I am looking for the M1A2 Abrams engine sounds; starting up, idle, when moving etc. These sounds were also used in the Bad Company 2 Closed Beta on the PS3. I never knew how to extract these sounds. Thank you so much if someone actually cares to help me out here, been trying to find something for a decade. It's the same procedure as with BC2 except that you have to change the xma version in the bat file. for /r %%i in (*.str) do "%CD%\xma_test.exe" "%%i" -1 -r "%%i.xm" #XMA version 1 (BC1) for /r %%i in (*.str) do "%CD%\xma_test.exe" "%%i" -2 -r "%%i.xm" #XMA version 2 (BC2, BF1943) #You can see the help menu if you open xma_test.exe alone through the cmd. The offsets you need to apply with BC1 are 0x00, 0x2c, 0x6c, 0x28. BFBC1 - Tank M1A2 SoundFX (Mega Link) Btw has anyone the Xbox 360 version of BC2 Vietnam DLC ? Edited January 10, 2021 by Neyxos Quote Link to comment Share on other sites More sharing options...
PTFO_JAM Posted March 12, 2021 Report Share Posted March 12, 2021 i always wanted the VO from bad company 2, has anyone tried to extract them? Quote Link to comment Share on other sites More sharing options...
Neyxos Posted May 23, 2021 Report Share Posted May 23, 2021 (edited) On 3/12/2021 at 8:50 PM, PTFO_JAM said: i always wanted the VO from bad company 2, has anyone tried to extract them? Russian ? US ? German VO ? Edited May 23, 2021 by Neyxos Quote Link to comment Share on other sites More sharing options...
Nasrallah Posted May 30, 2021 Report Share Posted May 30, 2021 On 5/23/2021 at 2:36 PM, Neyxos said: Russian ? US ? German VO ? Could you share russian VO? And also I'd be thankful if you had polish VO too. Quote Link to comment Share on other sites More sharing options...
Neyxos Posted June 1, 2021 Report Share Posted June 1, 2021 BC2 - All sound effects Quote Link to comment Share on other sites More sharing options...
Nasrallah Posted June 11, 2021 Report Share Posted June 11, 2021 It took me 3 days to download the rar but I was worth it. Thank you. Quote Link to comment Share on other sites More sharing options...
PTFO_JAM Posted September 16, 2021 Report Share Posted September 16, 2021 On 5/23/2021 at 1:36 PM, Neyxos said: Russian ? US ? German VO ? I wanted US and RU sounds. Also during my extraction attempt i found some MEC sound files, i'd be glad if you could share them as well. Quote Link to comment Share on other sites More sharing options...
Neyxos Posted September 16, 2021 Report Share Posted September 16, 2021 14 hours ago, PTFO_JAM said: I wanted US and RU sounds. Also during my extraction attempt i found some MEC sound files, i'd be glad if you could share them as well. BFBC2-AllSoundFX Quote Link to comment Share on other sites More sharing options...
Марлоу Posted June 28, 2022 Report Share Posted June 28, 2022 Neyxos, you are my legend... Thanks! Quote Link to comment Share on other sites More sharing options...
Марлоу Posted June 28, 2022 Report Share Posted June 28, 2022 Neyxos, you are my legend! Thanks for this pack... Для тебя, отдельное место в раю! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.