Jump to content

H11Z3

Member
  • Content Count

    7
  • Joined

  • Last visited

  • Medals

Community Reputation

0 Neutral

About H11Z3

  • Rank
    Rookie
  1. H11Z3

    SoundNotFound

    is the description with a capital or not or does it not matter? but yes the code is in "Description.ext"
  2. H11Z3

    SoundNotFound

    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
  3. H11Z3

    SoundNotFound

    Could the file path be getting confused as I'm using a custom map?
  4. H11Z3

    SoundNotFound

    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}; }; };
  5. H11Z3

    SoundNotFound

    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}; }; }; =========================================================================
  6. H11Z3

    SoundNotFound

    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.
  7. 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
×