playSound: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) (Add isSpeech's Number description) |
Lou Montana (talk | contribs) m (Text replacement - "// since Arma 3" to "// since {{arma3}}") |
||
(3 intermediate revisions by the same user not shown) | |||
Line 32: | Line 32: | ||
|p1= soundName: [[String]] | |p1= soundName: [[String]] | ||
|r1= [[Object]] - the speaker object ([[Nothing]] before {{arma3}} | |r1= [[Object]] - the speaker object ([[Nothing]] before {{GVI|arma3|2.00|size= 0.75}}) | ||
|s2= [[playSound]] [soundName, isSpeech, offset] | |s2= [[playSound]] [soundName, isSpeech, offset] | ||
Line 38: | Line 38: | ||
|p21= soundName: [[String]] | |p21= soundName: [[String]] | ||
|p22= isSpeech: [[Boolean]] or {{GVI|arma3|2.04|size=0.75}} [[Number]] - (Optional, default [[false]]) | |p22= isSpeech: [[Boolean]] or {{GVI|arma3|2.04|size= 0.75}} [[Number]] - (Optional, default [[false]]) | ||
* 0/[[false]] = play as sound ([[fadeSound]] applies) | * 0/[[false]] = play as sound ([[fadeSound]] applies) | ||
* 1/[[true]] = play as speech ([[fadeSpeech]] applies), filters are not applied to it (i.e. house or vehicle interior one) | * 1/[[true]] = play as speech ([[fadeSpeech]] applies), filters are not applied to it (i.e. house or vehicle interior one) | ||
* 2 = play as sound ([[fadeSound]] applies) without interior/vehicle muffling | * 2 = play as sound ([[fadeSound]] applies) without interior/vehicle muffling | ||
|p23= offset: [[Number]] - (Optional, default 0) | |p23= offset: [[Number]] - (Optional, default 0) offset in seconds. Same as [[playMusic]] | ||
|p23since= arma3 2.00 | |p23since= arma3 2.00 | ||
|r2= [[Object]] - the speaker object ([[Nothing]] before {{arma3}} | |r2= [[Object]] - the speaker object ([[Nothing]] before {{GVI|arma3|2.00|size= 0.75}}) | ||
|x1= <sqf>playSound "soundname";</sqf> | |x1= <sqf>playSound "soundname";</sqf> | ||
Line 53: | Line 53: | ||
<sqf> | <sqf> | ||
playSound "AlarmCar"; | playSound "AlarmCar"; | ||
0 spawn | |||
{ | { | ||
_sound = ASLToAGL [0,0,0] nearestObject "#soundonvehicle"; | _sound = ASLToAGL [0,0,0] nearestObject "#soundonvehicle"; | ||
Line 60: | Line 60: | ||
}; | }; | ||
// since | // since {{arma3}} v2.00 | ||
_source = playSound "AlarmCar"; | _source = playSound "AlarmCar"; | ||
_source spawn | _source spawn | ||
Line 73: | Line 73: | ||
playSound "Alarm"; | playSound "Alarm"; | ||
hint "Started!"; | hint "Started!"; | ||
0 spawn | |||
{ | { | ||
_sound = ASLToAGL [0,0,0] nearestObject "#soundonvehicle"; | _sound = ASLToAGL [0,0,0] nearestObject "#soundonvehicle"; | ||
Line 80: | Line 80: | ||
}; | }; | ||
// since | // since {{arma3}} v2.00 | ||
private _source = playSound "Alarm"; | private _source = playSound "Alarm"; | ||
_source spawn | _source spawn |
Latest revision as of 18:02, 18 November 2023
Description
- Description:
- Plays a sound from CfgSounds. Sound can be defined in missionConfigFile, configFile or campaignConfigFile.
- Groups:
- Sounds
Syntax
- Syntax:
- playSound soundName
- Parameters:
- soundName: String
- Return Value:
- Object - the speaker object (Nothing before 2.00)
Alternative Syntax
- Syntax:
- playSound [soundName, isSpeech, offset]
- Parameters:
- soundName: String
- isSpeech: Boolean or 2.04 Number - (Optional, default false)
- 0/false = play as sound (fadeSound applies)
- 1/true = play as speech (fadeSpeech applies), filters are not applied to it (i.e. house or vehicle interior one)
- 2 = play as sound (fadeSound applies) without interior/vehicle muffling
- since 2.00
- offset: Number - (Optional, default 0) offset in seconds. Same as playMusic
- Return Value:
- Object - the speaker object (Nothing before 2.00)
Examples
- Example 1:
- playSound "soundname";
- Example 2:
- Start a sound and then stop it after 1.2 second:
playSound "AlarmCar"; 0 spawn { _sound = ASLToAGL [0,0,0] nearestObject "#soundonvehicle"; sleep 1.2; deleteVehicle _sound; }; // since Arma 3 v2.00 _source = playSound "AlarmCar"; _source spawn { sleep 1.2; deleteVehicle _this; };
- Example 3:
- Start a sound and wait until it is finished:
Additional Information
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 Aug 04, 2006 - 10:57 (UTC)
- Notes from before the conversion: For dialogue involving living units it is better to use say, playSound will play a sound at the location of the player, say will play a sound at the location of the unit that is speaking, and it will only play that sound if the unit is alive.
- Posted on Dec 28, 2014 - 08:22 (UTC)
-
As you may have noticed, the parameter for playsound/say3d that deals with the "volume" of the sound played has little to do with the effective loudness heard in game. What it is alters is the drop off for fading the sound at a distance. A higher decibel or integer value will increase the distance before any sort of fading will take place. The actual volume of the sound file played will factor in to this, as it does throughout the playing action.
Amplifying the Sound
Modifying the effective volume of sounds played by the engine is possible by "spamming" the sounds. By quickly playing the sounds overtop of one another, you can effectively amplify the volume
This exampleWill effectively amplify the sound by a sensed 2x. The volume of the sound file itself will still affect the sound volume as it appears as though the arma engine has no normalization for sound files added to it.playSound "soundname"; playSound "soundname";
Categories:
- Scripting Commands
- Introduced with Operation Flashpoint version 1.00
- Operation Flashpoint: New Scripting Commands
- Operation Flashpoint: Scripting Commands
- Operation Flashpoint: Elite: Scripting Commands
- ArmA: Armed Assault: Scripting Commands
- Arma 2: Scripting Commands
- Arma 2: Operation Arrowhead: Scripting Commands
- Take On Helicopters: Scripting Commands
- Arma 3: Scripting Commands
- Command Group: Sounds
- Scripting Commands: Local Effect