Sound issue

4

4ddavis

  • 4ddavis

The sound only works properly for the Murcielago that came with the game. For any car I add on my own it seems the only sound that comes through is the tire squeal. Is there any way to fix this?

Thanks
 
Simple.

Open up the car.ini file of the cars with no engine sound, then find the bit where it says "sample=engine.wav" or something very similar, and note the name of the wav file, as well as the "natural=xxxx" value underneath.

Then, pretty much anywhere in the file (I find just before "camera" settings is a good place) that is after a } and before a { you can paste this following piece of code. The bits I have put in bold are where you should put the names of "engine.wav" and the values of "natural=xxxx" so that it can read the wav file correctly.

Code:
;--Start Audio--
audio
{
  skid
  {
    volume=0.3
    sample=skid.wav
  }
  acc_all
  {
  }
  accelerate_out
  {
   volume=1.0
   smp0~audio.acc_all
   {
   [B]sample=engine.wav[/B]
   min=50
   max=10000 
   [B]natural=3000
[/B]   attack=500
   decay=500
   }
  }
  decelerate_out
  {
   volume=0.4
   smp0~audio.acc_all
   {
   [B]sample=engine.wav[/B]
   min=50 
   max=10000
   [B]natural=3000[/B]
   attack=500
   decay=500
   }
  }
}
;--End Audio--
 

Latest News

What's needed for simracing in 2024?

  • More games, period

  • Better graphics/visuals

  • Advanced physics and handling

  • More cars and tracks

  • AI improvements

  • AI engineering

  • Cross-platform play

  • New game Modes

  • Other, post your idea


Results are only viewable after voting.
Back
Top