say3D: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(add example for new way of stopping sound since A3 v2.00+)
mNo edit summary
Line 31: Line 31:
* delete the '''sound source''' with [[deleteVehicle]], or
* delete the '''sound source''' with [[deleteVehicle]], or
* kill the '''sound source''' with e.g [[setDamage]].
* kill the '''sound source''' with e.g [[setDamage]].
Prior to {{arma3}} v2.00, the '''sound source''' object was not returned by the command, so the '''from''' object had to be deleted instead (see Examples 2 and 3)
Prior to {{arma3}} v2.00, the '''sound source''' object was not returned by the command, so the '''from''' object had to be deleted instead (see Examples 2 and 3).
}}
}}



Revision as of 11:13, 27 January 2022

Hover & click on the images for description

Description

Description:
Lets an object say given sound in 3D space. This allows broadcasting of positional music or sound from a source, without having to script a fade sound or music command. Compare this with say2D which will always play a sound at the location of the player after he has been in the vicinity of a broadcasting sound. Sound is defined in "CfgSounds" of the Description.ext or main config.
An object can only "say" one sound at a time.
In order to stop a say3D sound: Prior to Arma 3 v2.00, the sound source object was not returned by the command, so the from object had to be deleted instead (see Examples 2 and 3).
Problems:
For some unknown reason if at the moment of command execution the player is in first person view and is inside a vehicle, the sound created is greatly attenuated.
Groups:
Broken CommandsSounds

Syntax 1

Syntax:
from say3D sound
Parameters:
from: Object - Origin of the sound
sound: String - Classname of the sound to be played. Defined in CfgSounds including Description.ext
Return Value:
Object - The sound source (was Nothing before Arma 3 v2.00)

Syntax 2

Syntax:
from say3D [sound, maxDistance, pitch, isSpeech, offset]
Parameters:
from: Object - Origin of the sound
sound: String - Classname of the sound to be played. Defined in CfgSounds including Description.ext
maxDistance: Number - (Optional, default 100) Maximum distance in meters at which the sound can be heard
pitch: Number - (Optional, default 1) Pitch of the sound
since Arma 3 logo black.png1.92
isSpeech: Boolean - (Optional, default false)
  • true = play as speech (fadeSpeech applies), filters are not applied to it (i.e. house or vehicle interior one)
  • false = play as sound, fadeSound applies
since Arma 3 logo black.png2.00
offset: Number - (Optional, default 0) Offset in seconds. Same as playMusic.
Return Value:
Object - The sound source (was Nothing before Arma 3 v2.00)

Syntax 3

Syntax:
[from, to] say3D sound
Parameters:
from: Object - Origin of the sound
to: Object - Target
sound: String - Classname of the sound to be played. Defined in CfgSounds including Description.ext
Return Value:
Object - The sound source (was Nothing before Arma 3 v2.00)

Syntax 4

Syntax:
[from, to] say3D [sound, maxDistance, pitch, isSpeech, offset]
Parameters:
from: Object - Origin of the sound
to: Object - Target
sound: String - Classname of the sound to be played. Defined in CfgSounds including Description.ext
maxDistance: Number - (Optional, default 100) Maximum distance in meters at which the sound can be heard
pitch: Number - (Optional, default 1) Pitch of the sound
since Arma 3 logo black.png2.00
isSpeech: Boolean - (Optional, default false)
  • true = play as speech (fadeSpeech applies), filters are not applied to it (i.e. house or vehicle interior one)
  • false = play as sound, fadeSound applies
since Arma 3 logo black.png2.00
offset: Number - (Optional, default 0) Offset in seconds. Same as playMusic.
Return Value:
Object - The sound source (was Nothing before Arma 3 v2.00)

Examples

Example 1:
helicopter1 say3D "Fortunateson";
Example 2:
Workaround for dead bodies: private _dummy = "#particlesource" createVehicleLocal ASLToAGL getPosWorld _corpse; _dummy say3D "whatever"; _dummy spawn { sleep 5; // at least the length of your sound deleteVehicle _this; };
Example 3:
// Since Arma 3 v2.00, the sound source is returned and can be deleted directly _soundSrc = helicopter1 say3D "Fortunateson"; sleep 5; deleteVehicle _soundSrc; // stop the sound after ~5 seconds

Additional Information

See also:
say say2D playSound createSoundSource

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 7 March 2013
Rocket
The only difference with this command and say is during cutscenes (when some camera effect is active). In cutscenes, say3D is 3D, say is not.
Posted on July 19, 2015 - 21:26 (UTC)
Benargee
In Arma 2 1.63, the object this command is assigned to must be alive for the sound to broadcast. If the object is killed while the sound is still playing, the sound will stop immediately.
Here is a link to the forum to get around this issue.
I have not tested this in Arma 3 yet.
Posted on March 11, 2017 - 14:43 (UTC)
Killzone Kid
This command creates sound object "#soundonvehicle" which can be detected with allMissionObjects: onEachFrame {hintSilent str allMissionObjects "#soundonvehicle"}; [] spawn {sleep 1; player say3D "Alarm"};