Jump to content

Kenziy sam

Member
  • Content Count

    3
  • Joined

  • Last visited

  • Medals

Community Reputation

2 Neutral

About Kenziy sam

  • Rank
    Rookie
  1. Try using the find command. https://community.bistudio.com/wiki/find PD: The truth is I don't know about the manipulation of the Config but I did something and I do not know if I have logic to obtain the object of the index 0 since from what I read about the CfgPatches in the array of units[], what is designated are the objects that have already been created in the CfgVehicles. (configFile >> "cfgvehicles" >> "TWZ_Twz_Pym_Little_F" ) select 0
  2. mmmm I'm seeing that you're calling _this select 0. You're calling the first parameter of the class I guess, but I don't understand why the select 0 again. Is it because you want to call the array index of unit [] ?
  3. These are the respective locations of the sound effects that AFAR uses. IN %Directory_root%\(Arma3)\Addons\dubbing_radio_f.pbo\Sfx\in2a.ogg %Directory_root%\(Arma3)\Addons\dubbing_radio_f.pbo\Sfx\in2b.ogg %Directory_root%\(Arma3)\Addons\dubbing_radio_f.pbo\Sfx\in2c.ogg OUT %Directory_root%\(Arma3)\Addons\dubbing_radio_f.pbo\Sfx\out2a.ogg %Directory_root%\(Arma3)\Addons\dubbing_radio_f.pbo\Sfx\out2b.ogg %Directory_root%\(Arma3)\Addons\dubbing_radio_f.pbo\Sfx\out2c.ogg RADIO NOISE %Directory_root%\(Arma3)\Addons\dubbing_radio_f.pbo\Sfx\radionoise1.ogg %Directory_root%\(Arma3)\Addons\dubbing_radio_f.pbo\Sfx\radionoise2.ogg %Directory_root%\(Arma3)\Addons\dubbing_radio_f.pbo\Sfx\radionoise3.ogg if you want to use them in your script you just have to create a file called description.ext where you have to use CfgSound for example class CfgSounds { sounds[] = {}; class radioin { name = "in2a"; sound[] = {"@A3\Dubbing_Radio_F\sfx\in2a.ogg",db+12,1.1}; titles[] = {}; }; class radiout { name = "out2a"; sound[] = {"@A3\Dubbing_Radio_F\sfx\out2a.ogg",db+12,1}; titles[] = {}; }; }; I recommend you the following links : https://community.bistudio.com/wiki/Description.ext https://community.bistudio.com/wiki/playSound https://community.bistudio.com/wiki/say2D and https://community.bistudio.com/wiki/say3D PD: Sorry for see you and Reply too late your Question xD, at least I hope it helps if you are still interested or for someone else who has also asked the same for the unknown.
×