bigpickle 0 Posted December 20, 2011 (edited) Hey guys I hope this is a simple one for someone to answer. I want to be able to add another two sound classes to a vehicle so I can add a sound to play internally and another to play externally How should write this on the said vehicles config? Edited December 21, 2011 by Bigpickle Share this post Link to post Share on other sites
Yac 10 Posted December 28, 2011 entry in the cfg engines and other sound on my P47 model... Int = Internal Ext = External soundGetIn[] = {"I44_vehicle_P47\sound\P47_goin.wss", db-25, 1}; soundGetOut[] = {"I44_vehicle_P47\sound\P47_goout.wss", db-25, 1, 30}; soundDammage[] = {"I44_vehicle_P47\sound\P47_crash.wss",0.01,1}; soundEngineOnInt[] = {"I44_vehicle_P47\sound\P47_start.wss",0.562341,1}; soundEngineOnExt[] = {"I44_vehicle_P47\sound\P47_start.wss",3,1,1550}; soundEngineOffInt[] = {"I44_vehicle_P47\sound\P47_stop.wss",0.562341,1}; soundEngineOffExt[] = {"I44_vehicle_P47\sound\P47_stop.wss",3,1,1550}; soundLandCrash[] = {"\I44_vehicle_P47\Sound\P47_tire",3,1.2,700}; soundServo[] = {"\I44_vehicle_P47\Sound\Gear",2.5,1,100}; Share this post Link to post Share on other sites
bigpickle 0 Posted January 6, 2012 sorry Yak I don't understand what your trying to tell me. Share this post Link to post Share on other sites
hellfire257 3 Posted January 8, 2012 What he means is that the the sound classes with the suffix Int are the internal sounds, and the ones with Ext are the external sounds. Share this post Link to post Share on other sites
bigpickle 0 Posted January 17, 2012 Don't i need to define what that class is and what it does? ie i cant just put: soundRadioInt[] = {"Radio\Radio.wss",1,1} ; How would the game know when to play my file? That's the bit im stuck on :( Share this post Link to post Share on other sites
max power 21 Posted January 17, 2012 I believe you can only use sound types that are predefined by default unless you want to get into scripting. I was not able to add, for example, a 'tail rotor' sound effect tied to the tail rotor. Maybe someone who knows more can prove me wrong. Share this post Link to post Share on other sites
bigpickle 0 Posted January 17, 2012 I'm positive your correct Max Power, I think basically you have to create custom classes and that's where its complicated if your not a scripting guru. Share this post Link to post Share on other sites