groupChat: Difference between revisions

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


| Make a unit send a text message over the group radio channel. Must have assigned "itemRadio" to see or transmit the messages. |= 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
____________________________________________________________________________________________
____________________________________________________________________________________________


| unit '''groupChat''' chatText |= Syntax


|p1= unit: [[Object]] |= Parameter 1
| unitName '''groupChat''' chatText |= Syntax


|p2= chatText: [[String]] - the message that should be sent |= Parameter 2
|p1= unitName: [[Object]] - unit transmitting message|= Parameter 1
|p2= chatText: [[String]] - message to transmit |= Parameter 2


| [[Nothing]] |= Return value
| [[Nothing]] |= Return value
Line 34: Line 34:
<br>[[Image:xChat.jpg]]|= Example 1
<br>[[Image:xChat.jpg]]|= Example 1


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


}}
}}

Revision as of 22:08, 4 August 2016

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