customChat: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(Too classy for wiki)
(Undo revision 88167 by Benargee (talk))
Line 5: Line 5:


|0.50|= Game version
|0.50|= Game version
|arg= global |= Arguments in MP
|eff= local |= Effects in MP
____________________________________________________________________________________________
____________________________________________________________________________________________


| Sends the chat message to the custom radio channel. |= Description
| Sends the chat message to the custom radio channel. The radio channel needs to be created on the server before hand, with [[radioChannelCreate]] command. |= Description
____________________________________________________________________________________________
____________________________________________________________________________________________


Line 23: Line 27:




|x1= <code>_unit customChat [1, &quot;Hello, I am a custom chat message!&quot;]</code>|= EXAMPLE1
|x1= <code>sweetBoy [[customChat]] [1, "Hi, any sweetgirls to chat?"];</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]]|= Example 1


____________________________________________________________________________________________
____________________________________________________________________________________________


| |= SEEALSO  
| [[globalChat]], [[groupChat]], [[vehicleChat]], [[commandChat]], [[sideChat]], [[systemChat]], [[radioChannelCreate]], [[customRadio]] |= SEEALSO  


|  |= MPBEHAVIOUR  
|  |= MPBEHAVIOUR  
Line 42: Line 55:
<h3 style='display:none'>Bottom Section</h3>
<h3 style='display:none'>Bottom Section</h3>
[[Category:Arma_3:_New_Scripting_Commands_List|{{uc:{{PAGENAME}}}}]]
[[Category:Arma_3:_New_Scripting_Commands_List|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]

Revision as of 05:55, 24 March 2015

Hover & click on the images for description

Description

Description:
Sends the chat message to the custom radio channel. The radio channel needs to be created on the server before hand, with radioChannelCreate command.
Groups:
Uncategorised

Syntax

Syntax:
unit customChat [channel, message]
Parameters:
unit: Object
[channel, message]: Array
channel: Number
message: String
Return Value:
Nothing

Examples

Example 1:
sweetBoy customChat [1, "Hi, any sweetgirls to chat?"];
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:
globalChatgroupChatvehicleChatcommandChatsideChatsystemChatradioChannelCreatecustomRadio

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