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

To join the OverTake Racing Club races I want them to be: (multiple choice)

  • Free to access

    Votes: 145 86.3%
  • Better structured events

    Votes: 27 16.1%
  • Better structured racing club forum

    Votes: 25 14.9%
  • More use of default game content

    Votes: 21 12.5%
  • More use of fixed setups

    Votes: 50 29.8%
  • No 3rd party registration pages

    Votes: 59 35.1%
  • Less casual events

    Votes: 15 8.9%
  • More casual events

    Votes: 55 32.7%
  • Other, specify in thread

    Votes: 10 6.0%
Back
Top