How can i load a own engine sound. I did it in my config.cpp, but it's not working
Here is the code:
Code:class CfgSounds{ class motor1{ name = "motor1"; sound[] = {"\sportcar\sounds\motor.ogg", db-5, 1}; titles[] = {}; }; }; class CfgVehicles { class LandVehicle; class Car : LandVehicle {}; class VWGolf : car {}; class carbase: VWGolf {.... soundEngine[]={\ca\wheeled\Data\Sound\4WD_Loop4,db-35,1.2}; soundGear[]={\ca\wheeled\Data\Sound\shifter_v2,db-75,1}; SoundGetIn[]={\ca\wheeled\Data\Sound\4WD_DoorOpenClose1,db-20,1}; SoundGetOut[]={\ca\wheeled\Data\Sound\4WD_DoorOpenClose1,db-30,1}; getInAction=GetInLow; getOutAction = GetOutLow; .....}; class sportcar1 {... soundEngine[]= {"motor1"}; //here i tried the same folder like the cfgsounds, but it not working. I here the standart sound. ...};
HOME
Reply With Quote

