customChat: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (see also)
(see also, example locality)
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>sweetBoy customChat [1, &quot;Hi, any sweetgirls to chat?&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


____________________________________________________________________________________________
____________________________________________________________________________________________


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


|  |= MPBEHAVIOUR  
|  |= MPBEHAVIOUR  

Revision as of 00:48, 13 November 2014

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