setSoundEffect: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\| *((\[\[[a-zA-Z0-9_ |()]+\]\],? ?)+) * \}\}" to "|seealso= $1 }}")
m (Text replacement - "<!-- Note Section [A-Z]+ --> " to "")
Line 49: Line 49:


<dl class="command_description">
<dl class="command_description">
<!-- Note Section BEGIN -->
<dd class="notedate">Posted on October 2, 2013</dd>
<dd class="notedate">Posted on October 2, 2013</dd>
<dt class="note">[[User:Neokika|Neokika]]</dt>
<dt class="note">[[User:Neokika|Neokika]]</dt>
Line 60: Line 59:
_trigger setSoundEffect ["$NONE$", "", "BattlefieldExplosions3", ""];
_trigger setSoundEffect ["$NONE$", "", "BattlefieldExplosions3", ""];
</code>
</code>
<!-- Note Section END -->
<!-- Note Section BEGIN -->
<dd class="notedate">Posted on March 7, 2012</dd>
<dd class="notedate">Posted on March 7, 2012</dd>
<dt class="note">[[User:old_man_auz|old_man_auz]]</dt>
<dt class="note">[[User:old_man_auz|old_man_auz]]</dt>
Line 86: Line 83:
_trigger setSoundEffect[ "NoSound" , "" , "" , "Wind2_EP1" ];
_trigger setSoundEffect[ "NoSound" , "" , "" , "Wind2_EP1" ];
</code>
</code>
<!-- Note Section END -->
</dl>
</dl>



Revision as of 01:42, 6 April 2021

Hover & click on the images for description

Description

Description:
Description needed
Groups:
SoundsTriggersWaypoints

Syntax

Syntax:
Syntax needed
Parameters:
trigger: Object
[sound, voice, soundEnv, soundDet]: Array of strings, see description
Return Value:
Return value needed

Alternative Syntax

Syntax:
waypoint setSoundEffect [sound, voice]
Parameters:
waypoint: Array - format Waypoint
[sound, voice]: Array of strings, see description
Return Value:
Nothing

Examples

Example 1:
_trigger setSoundEffect ["Alarm", "", "", ""];
Example 2:
[_group1,2] setSoundEffect ["Alarm", ""];
Example 3:
_trigger setSoundEffect ["$NONE$", "Alarm", "", ""];
Example 4:
_trigger setSoundEffect ["$NONE$", "", "BattlefieldExplosions3", ""];
Example 5:
_trigger setSoundEffect ["$NONE$", "", "", "Owl"];

Additional Information

See also:
createTriggersetMusicEffectsetTitleEffect

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note
Posted on October 2, 2013
Neokika
To avoid having to create a dummy sound definition, you can use $NONE$ instead. private "_trigger"; _trigger = createTrigger ["EmptyDetector", position player]; _trigger setTriggerStatements ["true", "", ""]; _trigger setSoundEffect ["$NONE$", "", "BattlefieldExplosions3", ""];
Posted on March 7, 2012
old_man_auz
When using this function, I found that if the parameter sound was empty, then you would always get a 'Sound not found' error. The following code fixes this problem. You need to create a dummy sound. This is what example 3 is hinting towards. description.ext: class CfgSounds { sounds[] = {}; class NoSound { name = "NoSound"; sound[] = {"", 0, 1}; titles[] = {}; }; //Dummy sound needed for setSoundEffect command, due to stupid bug in engine. }; (code sample above written by 'CarlGustaffa' on the Bohemia Interactive forums.) script.sqf: _trigger = createTrigger[ "EmptyDetector" , _position ]; _trigger setTriggerStatements [ "true" , "" , "" ]; _trigger setSoundEffect[ "NoSound" , "" , "" , "Wind2_EP1" ];