Ai in heli or ground veh toggles sound custom sound?

osmox1971

Member
is it possable with dzai or wicked ai heli and land patrols toggle a custom sound example siren/airraid.ogg?
If so can someone help me with this.
 
Write it again please, and try hard this time. Even after reading this the 3rd time i have no clue, what the heck you mean.
 
ok. i use dzai and on my ai heli list i have Ka137_PMC . When ai spawn in that heli i like a custom siren sound named SirenLoopMono.ogg to play. Kinda like a player toggle siren on in a cop car.
 
Code:
_nul = [objNull, _vehicle, rSAY, "Siren", 100] call RE;

description.ext:
Code:
class CfgSounds
{
    // List of sounds (.ogg files without the .ogg extension)
    sounds[] = {Siren};

    // Definition for each sound
    class geigercounter
    {
        name = "Siren"; // Name for mission editor
        sound[] = {Sounds\Siren.ogg, db + 0, 1.0};
        titles[] = {0, ""};
    };
};
the rest is trial and error.
 
Back
Top