groupChat: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(description, see also)
m (template:command argument fix)
Line 11: Line 11:
____________________________________________________________________________________________
____________________________________________________________________________________________


| Types text to the group radio channel. Must have assigned "ItemRadio" to see or transmit the messages. 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]]) |= Description
| Types text to the group radio channel. Must have assigned "ItemRadio" to see or transmit the messages. 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]]) |DESCRIPTION=
____________________________________________________________________________________________
____________________________________________________________________________________________




| unitName '''groupChat''' chatText |= Syntax
| unitName '''groupChat''' chatText |SYNTAX=


|p1= unitName: [[Object]] - unit transmitting message|= Parameter 1
|p1= unitName: [[Object]] - unit transmitting message|PARAMETER1=
|p2= chatText: [[String]] - message to transmit |= Parameter 2
|p2= chatText: [[String]] - message to transmit |PARAMETER2=


| [[Nothing]] |= Return value
| [[Nothing]] |RETURNVALUE=
____________________________________________________________________________________________
____________________________________________________________________________________________
   
   
|x1= <code>_soldierOne [[groupChat]] "Show this text";</code> |= Example 1
|x1= <code>_soldierOne [[groupChat]] "Show this text";</code> |EXAMPLE1=


|x2= <code>[[driver]] [[vehicle]] [[player]] [[sideChat]] "sideChat";
|x2= <code>[[driver]] [[vehicle]] [[player]] [[sideChat]] "sideChat";
Line 32: Line 32:
[[driver]] [[vehicle]] [[player]] [[customChat]] [1, "customChat"];
[[driver]] [[vehicle]] [[player]] [[customChat]] [1, "customChat"];
[[systemChat]] "systemChat";</code>
[[systemChat]] "systemChat";</code>
<br>[[Image:xChat.jpg]]|= Example 1
<br>[[Image:xChat.jpg]]|EXAMPLE1=


| [[globalChat]], [[sideChat]], [[vehicleChat]], [[commandChat]], [[customChat]], [[systemChat]], [[groupRadio]] |= See also
| [[globalChat]], [[sideChat]], [[vehicleChat]], [[commandChat]], [[customChat]], [[systemChat]], [[groupRadio]] |SEEALSO=


}}
}}

Revision as of 15:40, 7 April 2019

Hover & click on the images for description

Description

Description:
Types text to the group radio channel. Must have assigned "ItemRadio" to see or transmit the messages. 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)
Groups:
Uncategorised

Syntax

Syntax:
unitName groupChat chatText
Parameters:
unitName: Object - unit transmitting message
chatText: String - message to transmit
Return Value:
Nothing

Examples

Example 1:
_soldierOne groupChat "Show this text";
Example 2:
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";
xChat.jpg

Additional Information

See also:
globalChatsideChatvehicleChatcommandChatcustomChatsystemChatgroupRadio

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