globalChat: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "|= Game name" to "|Game name=")
Line 14: Line 14:
____________________________________________________________________________________________
____________________________________________________________________________________________


| unitName [[globalChat]] chatText |SYNTAX=


| unitName '''globalChat''' chatText |SYNTAX=
|p1= unitName: [[Object]] - unit transmitting message |PARAMETER1=


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


Line 24: Line 24:
   
   
|x1= <code>_soldierOne [[globalChat]] "Show this text";</code> |EXAMPLE1=
|x1= <code>_soldierOne [[globalChat]] "Show this text";</code> |EXAMPLE1=
|x2= <code>[[driver]] [[vehicle]] [[player]] [[sideChat]] "sideChat";
|x2= [[File:xChat.jpg|right]]
[[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";</code>
[[driver]] [[vehicle]] [[player]] [[customChat]] [1, "customChat"];
<br>[[Image:xChat.jpg]]|EXAMPLE1=
[[systemChat]] "systemChat";
<br><!-- needed for the text to display properly with the float…??? -->
|EXAMPLE2=


| [[sideChat]], [[groupChat]], [[vehicleChat]], [[commandChat]], [[customChat]], [[systemChat]], [[globalRadio]] |SEEALSO=
| [[sideChat]], [[groupChat]], [[vehicleChat]], [[commandChat]], [[customChat]], [[systemChat]], [[globalRadio]] |SEEALSO=
}}
}}


Line 48: Line 49:


<h3 style="display:none">Bottom Section</h3>
<h3 style="display:none">Bottom Section</h3>
[[Category:Scripting Commands|GLOBALCHAT]]
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands OFP 1.46|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands OFP 1.96|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands OFP 1.99|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands OFP 1.99|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands OFP 1.96|GLOBALCHAT]]
[[Category:Scripting Commands ArmA|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands OFP 1.46|GLOBALCHAT]]
[[Category:Scripting Commands ArmA|GLOBALCHAT]]
[[Category:Command_Group:_Interaction|{{uc:{{PAGENAME}}}}]]
[[Category:Command_Group:_Radio_Control|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting_Commands_Take_On_Helicopters|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting_Commands_Take_On_Helicopters|{{uc:{{PAGENAME}}}}]]
[[Category:Command_Group:_Interaction|{{uc:{{PAGENAME}}}}]]
[[Category:Command_Group:_Radio_Control|{{uc:{{PAGENAME}}}}]]

Revision as of 01:02, 19 December 2019

Hover & click on the images for description

Description

Description:
Types text to the global 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)
Groups:
Uncategorised

Syntax

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

Examples

Example 1:
_soldierOne globalChat "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:
sideChatgroupChatvehicleChatcommandChatcustomChatsystemChatglobalRadio

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

Ceeeb
In OFP 1.96, this command can be used by a Game_Logic unit, which will result in the text being displayed on screen without any indication of the side of radio source, or quotation marks. For example : gamelogic1 globalchat "hello world" will create the text hello world in the radio log.

Bottom Section