S3M4J Posted January 9, 2015 Report Share Posted January 9, 2015 i am doing this mod but its asking to add class CfgSounds { sounds[] = {}; class NoSound { name = "NoSound"; sound[] = {"", 0, 1}; titles[] = {}; }; #include "Train\sounds.hpp" }; But i have this class CfgSounds { sounds[] = { fox }; class fox { name="fox"; sound[]={fox.ogg,0.9,1}; titles[] = {}; }; }; How do i combine the to Link to comment Share on other sites More sharing options...
0 Nemaconz Posted January 9, 2015 Report Share Posted January 9, 2015 class CfgSounds { sounds[] = {fox,NoSound}; class fox { name="fox"; sound[]={fox.ogg,0.9,1}; titles[] = {}; }; class NoSound { name = "NoSound"; sound[] = {"", 0, 1}; titles[] = {}; }; #include "Train\sounds.hpp" }; Link to comment Share on other sites More sharing options...
0 Tech_Support Posted January 9, 2015 Report Share Posted January 9, 2015 class CfgSounds { sounds[] = { fox, NoSound }; class fox { name="fox"; sound[]={fox.ogg,0.9,1}; titles[] = {}; }; class NoSound { name = "NoSound"; sound[] = {"", 0, 1}; titles[] = {};};#include "Train\sounds.hpp"}; Link to comment Share on other sites More sharing options...
Question
S3M4J
i am doing this mod but its asking to add
But i have this
How do i combine the to
Link to comment
Share on other sites
2 answers to this question
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now