BIS fnc sayMessage: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (1 revision)
(Page filling)
Line 1: Line 1:
{{Function|= Comments
{{Function|= Comments
____________________________________________________________________________________________
____________________________________________________________________________________________
Line 6: Line 5:


|1.00|= Game version
|1.00|= Game version
____________________________________________________________________________________________


| <pre>/*
|arg= glob |=


Description:
|eff= local |=
Play radio message.
____________________________________________________________________________________________


Parameter(s):
| Make a speaker say a message. |= Description
0:
____________________________________________________________________________________________
OBJECT - speaker
SIDE - side HQ (created by "Headquarters Entity" module)
1: STRING - message
2: STRING or NUMBER - channel ("say3D", "direct", "group", "vehicle", "side", "command", "global" or custom channel ID; default is "side")


Returns:
| [speaker, message, channel] call [[BIS_fnc_sayMessage]] |= Syntax
BOOL
*/


</pre><small>''(Placeholder description extracted from the function header by [[BIS_fnc_exportFunctionsToWiki]])''</small> |= Description
|p1= speaker: [[Object]] or [[Side]] |= Parameter 1
____________________________________________________________________________________________


| <!-- [] call [[BIS_fnc_sayMessage]]; --> |= Syntax
|p2= message: [[String]] - must be defined in either [[Description.ext#CfgSounds|CfgSounds]] or [[Description.ext#CfgRadio|CfgRadio]] |= Parameter 2


|p1= |= Parameter 1
|p3= channel: [[String]] or [[Number]] - (Optional, default "side") can be "say3D", "direct", "group", "vehicle", "side", "command", "global", or custom channel ID |= Parameter 3


| |= Return value
| [[Boolean]] - [[true]] when done |= Return value
____________________________________________________________________________________________
____________________________________________________________________________________________


|x1= <code></code> |=  
|x1= <code><nowiki>[</nowiki>[[leader]] [[player]], "to_c01_m01_brief_001_br_briefing_a_CENTAUR_0", "say3D"] [[call]] [[BIS_fnc_sayMessage]];</code> |= Example 1
____________________________________________________________________________________________
____________________________________________________________________________________________


| |= See also
| [[say]], [[say3D]], [[directSay]], [[groupRadio]], [[vehicleRadio]], [[sideRadio]], [[commandRadio]], [[globalRadio]], [[customRadio]] |= See also
 
}}
}}



Revision as of 18:28, 8 May 2018

-wrong parameter ("globargument") defined!-LELocal
Hover & click on the images for description

Description

Description:
Make a speaker say a message.
Execution:
call
Groups:
Uncategorised

Syntax

Syntax:
[speaker, message, channel] call BIS_fnc_sayMessage
Parameters:
speaker: Object or Side
message: String - must be defined in either CfgSounds or CfgRadio
channel: String or Number - (Optional, default "side") can be "say3D", "direct", "group", "vehicle", "side", "command", "global", or custom channel ID
Return Value:
Boolean - true when done

Examples

Example 1:
[leader player, "to_c01_m01_brief_001_br_briefing_a_CENTAUR_0", "say3D"] call BIS_fnc_sayMessage;

Additional Information

See also:
saysay3DdirectSaygroupRadiovehicleRadiosideRadiocommandRadioglobalRadiocustomRadio

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