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

How often do you meet up (IRL) with your simracing friends?

  • Weekly

    Votes: 31 8.4%
  • Monthly

    Votes: 19 5.1%
  • Yearly

    Votes: 28 7.6%
  • Weekly at lan events

    Votes: 3 0.8%
  • Monthly at lan events

    Votes: 2 0.5%
  • Yearly at lan events

    Votes: 10 2.7%
  • Never have

    Votes: 285 77.0%
Back
Top