groupRadio: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
No edit summary
m (Some wiki formatting)
 
(60 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{Command|= Comments
{{RV|type=command
____________________________________________________________________________________________


| ofp |= Game name
|game1= ofp
|version1= 1.00


|1.00|= Game version
|game2= ofpe
|version2= 1.00


|arg= global |= Arguments in MP
|game3= arma1
|version3= 1.00


|eff= local |= Effects in MP
|game4= arma2
____________________________________________________________________________________________
|version4= 1.00


| Sends the audio message to the group radio channel. Must have assigned "ItemRadio" to send or receive the transmission. The message is defined in CfgRadio in the [[description.ext]] file or config radio protocol. The transmission will play only on the PC where command was executed. If you need the transmission to play on all computers, you have to execute it globally (see [[remoteExec]]).
|game5= arma2oa
<br><br>Note:  When transmitting unit gets killed, transmission will be interrupted, however when receiving unit gets killed, the transmission continues to play. |= Description
|version5= 1.50
____________________________________________________________________________________________


| unit '''groupRadio''' radioName |= Syntax
|game6= tkoh
|version6= 1.00


|p1= unit: [[Object]] - unit to transmit |= PARAMETER1
|game7= arma3
|version7= 0.50


|p2= radioName: [[String]] - class name from CfgRadio |= PARAMETER2
|arg= global


|p3= |= PARAMETER3
|eff= local


| [[Nothing]] |= RETURNVALUE
|gr1= Radio and Chat
____________________________________________________________________________________________
 
|x1= <code>_soldierOne [[groupRadio]] "messageOne";</code> |= Example 1
|x2= <code>[[player]] [[groupRadio]] [[configName]] [[selectRandom]] ("true" [[configClasses]] ([[configFile]] >> "CfgRadio"));</code> |= Example 2
____________________________________________________________________________________________


| [[sideRadio]], [[groupChat]], [[customRadio]], [[vehicleRadio]], [[globalRadio]], [[directSay]], [[commandRadio]] |= See also
|gr2= Sounds


|descr= Sends the audio message to the group radio channel. The message is defined in CfgRadio in the [[Description.ext|description.ext]] file or config radio protocol.
{{Feature|important|
The unit must have an [[assignItem|assigned]] radio item (such as '''''"ItemRadio"''''') to see or transmit the messages.
A radio item must have the property <syntaxhighlight lang="cpp" inline>simulation = "ItemRadio";</syntaxhighlight> in its [[CfgWeapons_Config_Reference#simulation.3D.22Weapon.22|CfgWeapons config]].
}}
}}
{{Feature|informative|When the transmitting unit gets killed, the transmission is interrupted. However when the receiving unit gets killed, the transmission continues to play.}}


<h3 style="display:none">Notes</h3>
|mp= If you need the transmission to play on all computers, you have to execute it globally (see [[remoteExec]]).
<dl class="command_description">
<!-- Note Section BEGIN -->


<!-- Note Section END -->
|s1= unit [[groupRadio]]  radioName
</dl>


<h3 style="display:none">Bottom Section</h3>
|p1= unit: [[Object]] - unit to transmit
[[Category:Scripting Commands|GROUPRADIO]]
[[Category:Scripting Commands OFP 1.99|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands OFP 1.96|GROUPRADIO]]
[[Category:Scripting Commands OFP 1.46|GROUPRADIO]]
[[Category:Scripting Commands ArmA|GROUPRADIO]]
[[Category:Command_Group:_Radio_Control|{{uc:{{PAGENAME}}}}]]
[[Category:Command_Group:_Interaction|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting_Commands_Take_On_Helicopters|{{uc:{{PAGENAME}}}}]]


<!-- CONTINUE Notes -->
|p2= radioName: [[String]] - class name from {{hl|CfgRadio}}
<dl class="command_description">
 
<dd class="notedate">Posted on December 3, 2016 - 21:34 (UTC)</dd>
|r1= [[Nothing]]
<dt class="note">[[User:Killzone Kid|Killzone Kid]]</dt>
 
<dd class="note">
|x1= <sqf>_soldierOne groupRadio "messageOne";</sqf>
To transmit user custom sounds (see [[Multiplayer_Custom_Sounds_Tutorial]]), prefix the full filename including file extension with #. For example if there is a custom user sound file called <tt>MySound.ogg</tt>, to play it on the radio use:
 
<code>[[player]] [[groupRadio]] "#MySound.ogg";</code>
|x2= <sqf>player groupRadio (configName selectRandom ("true" configClasses (configFile >> "CfgRadio")));</sqf>
</dd>
 
</dl>
|seealso= [[sideRadio]] [[groupChat]] [[customRadio]] [[vehicleRadio]] [[globalRadio]] [[directSay]] [[commandRadio]]
<!-- DISCONTINUE Notes -->
}}
 
{{Note
|user= Killzone_Kid
|timestamp= 20161203213400
|text= To transmit user custom sounds (see [[Multiplayer Custom Sounds Tutorial]]), prefix the full filename including file extension with {{hl|#}}.
For example if there is a custom user sound file called {{hl|MySound.ogg}}, to play it on the radio use:
<sqf>player groupRadio "#MySound.ogg";</sqf>
}}

Latest revision as of 00:08, 25 April 2024

Hover & click on the images for description

Description

Description:
Sends the audio message to the group radio channel. The message is defined in CfgRadio in the description.ext file or config radio protocol.
The unit must have an assigned radio item (such as "ItemRadio") to see or transmit the messages. A radio item must have the property simulation = "ItemRadio"; in its CfgWeapons config.
When the transmitting unit gets killed, the transmission is interrupted. However when the receiving unit gets killed, the transmission continues to play.
Multiplayer:
If you need the transmission to play on all computers, you have to execute it globally (see remoteExec).
Groups:
Radio and ChatSounds

Syntax

Syntax:
unit groupRadio radioName
Parameters:
unit: Object - unit to transmit
radioName: String - class name from CfgRadio
Return Value:
Nothing

Examples

Example 1:
_soldierOne groupRadio "messageOne";
Example 2:
player groupRadio (configName selectRandom ("true" configClasses (configFile >> "CfgRadio")));

Additional Information

See also:
sideRadio groupChat customRadio vehicleRadio globalRadio directSay commandRadio

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
Killzone_Kid - c
Posted on Dec 03, 2016 - 21:34 (UTC)
To transmit user custom sounds (see Multiplayer Custom Sounds Tutorial), prefix the full filename including file extension with #. For example if there is a custom user sound file called MySound.ogg, to play it on the radio use:
player groupRadio "#MySound.ogg";