groupRadio: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(see also)
(description, see also)
Line 11: Line 11:
____________________________________________________________________________________________
____________________________________________________________________________________________


| Make a unit send a message over the group radio channel. The message is defined in the description.ext of the mission and may contain text and sound. |= Description
| 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]]).
<br><br>Note:  When transmitting unit gets killed, transmission will be interrupted, however when receiving unit gets killed, the transmission continues to play. |= Description
____________________________________________________________________________________________
____________________________________________________________________________________________


| unit '''groupRadio''' radioName |= Syntax
| unit '''groupRadio''' radioName |= Syntax


|p1= unit: [[Object]] |= Parameter 1
|p1= unit: [[Object]] - unit to transmit |= PARAMETER1


|p2= radioName: [[String]] - the name of the message class in the description.ext |= Parameter 2
|p2= radioName: [[String]] - class name from CfgRadio |= PARAMETER2


| [[Nothing]] |= Return value
|p3= |= PARAMETER3
 
| [[Nothing]] |= RETURNVALUE
____________________________________________________________________________________________
____________________________________________________________________________________________
   
   
Line 27: Line 30:
____________________________________________________________________________________________
____________________________________________________________________________________________


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


}}
}}

Revision as of 22:06, 4 August 2016

Hover & click on the images for description

Description

Description:
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).

Note: When transmitting unit gets killed, transmission will be interrupted, however when receiving unit gets killed, the transmission continues to play.
Groups:
Uncategorised

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:
sideRadiogroupChatcustomRadiovehicleRadioglobalRadiodirectSaycommandRadio

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

Notes

Bottom Section