groupRadio: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "_{10,} " to "")
m (Some wiki formatting)
 
(43 intermediate revisions by 3 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 |Multiplayer Arguments=
|game3= arma1
|version3= 1.00


|eff= local |Multiplayer Effects=
|game4= arma2
|version4= 1.00


|gr1= Radio and Chat |GROUP1=
|game5= arma2oa
|version5= 1.50


|gr2= Sounds |GROUP2=
|game6= tkoh
|version6= 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]]).
|game7= arma3
<br><br>Note:  When transmitting unit gets killed, transmission will be interrupted, however when receiving unit gets killed, the transmission continues to play. |DESCRIPTION=
|version7= 0.50


| unit '''groupRadio''' radioName |SYNTAX=
|arg= global


|p1= unit: [[Object]] - unit to transmit |PARAMETER1=  
|eff= local


|p2= radioName: [[String]] - class name from CfgRadio |PARAMETER2=  
|gr1= Radio and Chat


|p3= |PARAMETER3=  
|gr2= Sounds


| [[Nothing]] |RETURNVALUE=
|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|
|x1= <code>_soldierOne [[groupRadio]] "messageOne";</code> |EXAMPLE1=
The unit must have an [[assignItem|assigned]] radio item (such as '''''"ItemRadio"''''') to see or transmit the messages.
|x2= <code>[[player]] [[groupRadio]] [[configName]] [[selectRandom]] ("true" [[configClasses]] ([[configFile]] >> "CfgRadio"));</code> |EXAMPLE2=
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.}}
 
|mp= If you need the transmission to play on all computers, you have to execute it globally (see [[remoteExec]]).
 
|s1= unit [[groupRadio]] radioName


| [[sideRadio]], [[groupChat]], [[customRadio]], [[vehicleRadio]], [[globalRadio]], [[directSay]], [[commandRadio]] |SEEALSO=
|p1= unit: [[Object]] - unit to transmit


}}
|p2= radioName: [[String]] - class name from {{hl|CfgRadio}}
 
|r1= [[Nothing]]


<h3 style="display:none">Notes</h3>
|x1= <sqf>_soldierOne groupRadio "messageOne";</sqf>
<dl class="command_description">
<!-- Note Section BEGIN -->


<!-- Note Section END -->
|x2= <sqf>player groupRadio (configName selectRandom ("true" configClasses (configFile >> "CfgRadio")));</sqf>
</dl>


<h3 style="display:none">Bottom Section</h3>
|seealso= [[sideRadio]] [[groupChat]] [[customRadio]] [[vehicleRadio]] [[globalRadio]] [[directSay]] [[commandRadio]]
[[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]]
{{GameCategory|arma1|Scripting Commands}}
{{GameCategory|arma2|Scripting Commands}}
{{GameCategory|arma3|Scripting Commands}}
{{GameCategory|tkoh|Scripting Commands}}


<!-- CONTINUE Notes -->
{{Note
<dl class="command_description">
|user= Killzone_Kid
<dd class="notedate">Posted on December 3, 2016 - 21:34 (UTC)</dd>
|timestamp= 20161203213400
<dt class="note">[[User:Killzone Kid|Killzone Kid]]</dt>
|text= To transmit user custom sounds (see [[Multiplayer Custom Sounds Tutorial]]), prefix the full filename including file extension with {{hl|#}}.
<dd class="note">
For example if there is a custom user sound file called {{hl|MySound.ogg}}, to play it on the radio use:
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:
<sqf>player groupRadio "#MySound.ogg";</sqf>
<code>[[player]] [[groupRadio]] "#MySound.ogg";</code>
}}
</dd>
</dl>
<!-- DISCONTINUE Notes -->

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";