vehicleChat: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - " " to " ")
m (Changed vehicleName to vehicle to avoid misunderstandings)
 
(16 intermediate revisions by one other user not shown)
Line 30: Line 30:
|descr= Types text to the vehicle radio channel. The text will be visible only on the PC where command was executed. If you need the message to show on all computers, you have to execute it globally, see [[remoteExec]].
|descr= Types text to the vehicle radio channel. The text will be visible only on the PC where command was executed. If you need the message to show on all computers, you have to execute it globally, see [[remoteExec]].


 
{{Feature|informative|
{{Feature|Informative|
* Object parameter must be a vehicle, not a player
* Object parameter must be a vehicle, not a player
* If you are in a crew seat (i.e. driver, gunner or commander), then it will include that role in the chat name output (Eg: Driver (you_name): "Message")}}
* If you are in a crew seat (i.e. driver, gunner or commander), then it will include that role in the chat name output (Eg: Driver (you_name): "Message")}}


|s1= vehicleName '''vehicleChat''' chatText
|s1= vehicle [[vehicleChat]] chatText


|p1= vehicleName: [[Object]] - Vehicle unit is in
|p1= vehicle: [[Object]] - vehicle unit is in


|p2= chatText: [[String]] - Message to transmit
|p2= chatText: [[String]] - message to transmit


|r1= [[Nothing]]
|r1= [[Nothing]]


|x1= <code>[[vehicle]] [[player]] [[vehicleChat]] "Show this text";</code>
|x1= <sqf>vehicle player vehicleChat "Show this text";</sqf>


|x2= [[File:xChat.jpg|right]]
|x2= [[File:xChat.jpg|right]]
[[driver]] [[vehicle]] [[player]] [[sideChat]] "sideChat";
<sqf>
[[driver]] [[vehicle]] [[player]] [[globalChat]] "globalChat";
driver vehicle player sideChat "sideChat";
[[driver]] [[vehicle]] [[player]] [[groupChat]] "groupChat";
driver vehicle player globalChat "globalChat";
[[vehicle]] [[player]] [[vehicleChat]] "vehicleChat";
driver vehicle player groupChat "groupChat";
[[driver]] [[vehicle]] [[player]] [[commandChat]] "commandChat";
vehicle player vehicleChat "vehicleChat";
[[driver]] [[vehicle]] [[player]] [[customChat]] [1, "customChat"];
driver vehicle player commandChat "commandChat";
[[systemChat]] "systemChat";
driver vehicle player customChat [1, "customChat"];
<br>
systemChat "systemChat";
</sqf>


|seealso= [[globalChat]], [[groupChat]], [[sideChat]], [[commandChat]], [[customChat]], [[systemChat]], [[vehicleRadio]]
|seealso= [[globalChat]] [[groupChat]] [[sideChat]] [[commandChat]] [[customChat]] [[systemChat]] [[vehicleRadio]]
}}
}}

Latest revision as of 10:11, 2 February 2024

Hover & click on the images for description

Description

Description:
Types text to the vehicle radio channel. The text will be visible only on the PC where command was executed. If you need the message to show on all computers, you have to execute it globally, see remoteExec.
  • Object parameter must be a vehicle, not a player
  • If you are in a crew seat (i.e. driver, gunner or commander), then it will include that role in the chat name output (Eg: Driver (you_name): "Message")
Groups:
Radio and Chat

Syntax

Syntax:
vehicle vehicleChat chatText
Parameters:
vehicle: Object - vehicle unit is in
chatText: String - message to transmit
Return Value:
Nothing

Examples

Example 1:
vehicle player vehicleChat "Show this text";
Example 2:
xChat.jpg
driver vehicle player sideChat "sideChat"; driver vehicle player globalChat "globalChat"; driver vehicle player groupChat "groupChat"; vehicle player vehicleChat "vehicleChat"; driver vehicle player commandChat "commandChat"; driver vehicle player customChat [1, "customChat"]; systemChat "systemChat";

Additional Information

See also:
globalChat groupChat sideChat commandChat customChat systemChat vehicleRadio

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