H11Z3
Member-
Content Count
7 -
Joined
-
Last visited
-
Medals
Community Reputation
0 NeutralAbout H11Z3
-
Rank
Rookie
-
is the description with a capital or not or does it not matter? but yes the code is in "Description.ext"
-
the code is in the selected map folder which falls under missions, the script is not in the folder "sound" but where the "mission.sqm" is
-
Could the file path be getting confused as I'm using a custom map?
-
My apologies I didn't know, the code still does not work not sure about the error now. class CfgMusic { tracks[]={music1}; class track1 { name="music1"; sound[] = {"\sound\music1.ogg", db+10, 1.0}; }; };
-
oh ok I understand now, so the file path is. H11Z3 - Missions - (mymission) - sound (The folder name within the mission) - then the ogg file (music1) ========================================================================================= class CfgMusic { tracks[]={music1}; class track1 { name="music1"; sound[] = {"\sound\music1.ogg", db+10, 1.0}; }; }; =========================================================================
-
Like this? =========================================== class CfgMusic { tracks[]={music1}; class track1 { name="music1"; sound[] = {\music\music.ogg, db+10, 1.0}; }; }; ============================================ It didn't work when I tested i.
-
H11Z3 started following SoundNotFound
-
Hello, I'm new to Arma 3 and I wanted to make a mission for my friends however, I ran into a problem whilst creating the sound as I wanted a custom song/music. everytime I walk into the trigger it shows an error saying "sound music1 not found" (music1 being the folder of the OGG file [the music]) =========================================================== Code: class CfgMusic { tracks[]={music1}; class track1 { name="music1"; sound[] = {\music\music1.ogg, db+10, 1.0}; }; }; ============================================================ any help will be great thanks -H11Z3