Fenix83 0 Posted January 18, 2002 I tried to put some new sounds and when i load the mission to test it, the game return to desktop with this message : "Config:some input afterEnd File" or something like this my decritpion.ext : minScore=201 avgScore=800 maxScore=1500 debriefing=1; showwatch=1; showcompass=1; showgps=1 showmap=1; class CfgRadio { sounds[] = { }; class test { name = ""; sound[] = {"test.ogg", db-40, 1.0}; title = $STRM_test; }; }; class CfgMusic { tracks[] = { Title }; class Title { name = "Title"; sound[] = {"\Music\Title.ogg", db, 1.0}; }; }; }; class CfgEnvSounds { sounds[] = {}; }; class CfgSFX {   sounds[] = {Kat};       class Kat   {      name = "Kat";      sounds[]={Kat};      sound1[]={"Kat.ogg", db-0,1, 1, 1, 1, 1};      empty[]= {, , , , 1 , 5, 20};   };   }; Share this post Link to post Share on other sites
Rob 1 Posted January 18, 2002 in class cfg music you have an extra bracket at the end of the configuration. Share this post Link to post Share on other sites
Chris Death 0 Posted January 18, 2002 I'm not sure, but could it be that you have a blank space after your last "};" like "}; "? description.ext is very sensitive in this case If so, delete it. Share this post Link to post Share on other sites
Fenix83 0 Posted January 18, 2002 there is no blank space after my last bracket but Rob is right i guess. Thank you so much Rob, i'll try it this evening Share this post Link to post Share on other sites
sgt.scropion 0 Posted January 18, 2002 yes Rob is right every { needs a }; missing or extra brackets will cause all kinds of errors, always check brackets when errors occur Share this post Link to post Share on other sites