The volume is not controlled in the script you linked. it is in the cfgsounds or whatever. i have not touched arma code for 200 years so i dont remember exactly.
what you want to edit is this sound[]={introSong.ogg,0.9,1}; the numbers at the end control the DB i think
class CfgSounds
{...
The volume is not controlled in the script you linked. it is in the cfgsounds or whatever. i have not touched arma code for 200 years so i dont remember exactly.
what you want to edit is this sound[]={introSong.ogg,0.9,1}; the numbers at the end control the DB i think
class CfgSounds
{...
change the sound call to:
playsound "fox";
it will play it locally for the player only, not so other people can hear.
also make sure you have this
class CfgSounds
{
sounds[] =
{
fox
};
class fox
{
name="fox";
sound[]={fox.ogg,0.9,1};
titles[] = {};
};
};
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.