vehicleRadio: Difference between revisions

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


| Send message to vehicle radio channel. Message is defined in [[description.ext]]. |= Description
| Sends the audio message to the vehicle radio channel. 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
____________________________________________________________________________________________
____________________________________________________________________________________________


| vehicleName '''vehicleRadio''' name |= Syntax
| unit '''vehicleRadio''' radioName |= Syntax


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


|p2= name: [[String]] |= Parameter 2
|p2= radioName: [[String]] - class name from CfgRadio |= PARAMETER2


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


| [[sideRadio]], [[groupRadio]], [[customRadio]], [[vehicleChat]], [[globalRadio]], [[directSay]] |= See also
| [[sideRadio]], [[groupRadio]], [[customRadio]], [[vehicleChat]], [[globalRadio]], [[directSay]], [[commandRadio]] |= See also


}}
}}

Revision as of 22:04, 4 August 2016

Hover & click on the images for description

Description

Description:
Sends the audio message to the vehicle radio channel. 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 vehicleRadio radioName
Parameters:
unit: Object - unit to transmit
radioName: String - class name from CfgRadio
Return Value:
Nothing

Examples

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

Additional Information

See also:
sideRadiogroupRadiocustomRadiovehicleChatglobalRadiodirectSaycommandRadio

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