globalChat: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (template:command argument fix)
m (Changed unitName to unit to avoid misunderstandings)
 
(45 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Command|= Comments
{{RV|type=command
____________________________________________________________________________________________


| ofp |= Game name
|game1= ofp
|version1= 1.00


|1.00|= Game version
|game2= ofpe
|version2= 1.00


|arg= global |Multiplayer Arguments=
|game3= arma1
|version3= 1.00


|eff= local |Multiplayer Effects=
|game4= arma2
____________________________________________________________________________________________
|version4= 1.00


| 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]]) |DESCRIPTION=
|game5= arma2oa
____________________________________________________________________________________________
|version5= 1.50


|game6= tkoh
|version6= 1.00


| unitName '''globalChat''' chatText |SYNTAX=
|game7= arma3
|version7= 0.50


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


| [[Nothing]] |RETURNVALUE=
|eff= local
____________________________________________________________________________________________
 
|x1= <code>_soldierOne [[globalChat]] "Show this text";</code> |EXAMPLE1=
|x2= <code>[[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";</code>
<br>[[Image:xChat.jpg]]|EXAMPLE1=


| [[sideChat]], [[groupChat]], [[vehicleChat]], [[commandChat]], [[customChat]], [[systemChat]], [[globalRadio]] |SEEALSO=
|gr1= Radio and Chat


}}
|descr= 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]]).
 
|s1= unit [[globalChat]] chatText
 
|p1= unit: [[Object]] - unit transmitting message
 
|p2= chatText: [[String]] - message to transmit
 
|r1= [[Nothing]]


<h3 style="display:none">Notes</h3>
|x1= <sqf>_soldierOne globalChat "Show this text";</sqf>
<dl class="command_description">
|x2= [[File:xChat.jpg|right]]
<!-- Note Section BEGIN -->
<sqf>
<dt class="note">'''[[User:Ceeeb|Ceeeb]]'''
driver vehicle player sideChat "sideChat";
<dd class="note">
driver vehicle player globalChat "globalChat";
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.
driver vehicle player groupChat "groupChat";
vehicle player vehicleChat "vehicleChat";
driver vehicle player commandChat "commandChat";
driver vehicle player customChat [1, "customChat"];
systemChat "systemChat";
</sqf>


<!-- Note Section END -->
|seealso= [[sideChat]] [[groupChat]] [[vehicleChat]] [[commandChat]] [[customChat]] [[systemChat]] [[globalRadio]]
</dl>
}}


<h3 style="display:none">Bottom Section</h3>
{{Note
[[Category:Scripting Commands|GLOBALCHAT]]
|user= Ceeeb
[[Category:Scripting Commands OFP 1.99|{{uc:{{PAGENAME}}}}]]
|timestamp= 20070131044700
[[Category:Scripting Commands OFP 1.96|GLOBALCHAT]]
|text= 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.
[[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 Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting_Commands_Take_On_Helicopters|{{uc:{{PAGENAME}}}}]]

Latest revision as of 10:11, 2 February 2024

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:
Radio and Chat

Syntax

Syntax:
unit globalChat chatText
Parameters:
unit: 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:
sideChat groupChat vehicleChat commandChat customChat systemChat globalRadio

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
Ceeeb - c
Posted on Jan 31, 2007 - 04:47 (UTC)
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.