BIS fnc infoText: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (seeAlso edited)
(page refactor)
Line 6: Line 6:


|1.51|= Game version
|1.51|= Game version
|eff= local |= Multiplayer Arguments
____________________________________________________________________________________________
____________________________________________________________________________________________


| <pre>/*
| Display a text in the "mission" GUI area with some effects. Good for the beginning of a mission. |= Description
File: infoText.sqf
____________________________________________________________________________________________


Description:
| [string1, string2, (...)] spawn [[BIS_fnc_infoText]] |= Syntax
Info with some ffect.


Parameter(s):
|p1= [[Array]] of [[String|string]] |= Parameter 1
_this: Array containing lines of text (String)
*/
[str("You Text") , str(date select 1) + "." + str(date select 2) + "." + str(date select 0), str("You Text")] spawn BIS_fnc_infoText;</


</pre><small>''(Placeholder description extracted from the function header by [[BIS_fnc_exportFunctionsToWiki]])''</small> |= Description
| [[Nothing]] |= Return value
____________________________________________________________________________________________
____________________________________________________________________________________________


| <!-- [] call [[BIS_fnc_infoText]]; --> |= Syntax
|x1= <code>["Somewhere on Altis", format ["year %1", date select 0], mapGridPosition player] spawn BIS_fnc_infoText;</code> |=  
 
|p1= |= Parameter 1
 
| |= Return value
____________________________________________________________________________________________
____________________________________________________________________________________________


|x1= <code> For Arma 3 : [str("You Text") , str(date select 1) + "." + str(date select 2) + "." + str(date select 0), str("You Text")] spawn BIS_fnc_infoText;</code> |=  
|exec= spawn |= Execution By
____________________________________________________________________________________________


| [[BIS_fnc_dynamicText]], [[BIS_fnc_textTiles]], [[BIS_fnc_typeText]], [[BIS_fnc_typeText2]] |= See also
| [[BIS_fnc_dynamicText]], [[BIS_fnc_textTiles]], [[BIS_fnc_typeText]], [[BIS_fnc_typeText2]] |= See also

Revision as of 04:45, 27 January 2018


Hover & click on the images for description

Description

Description:
Display a text in the "mission" GUI area with some effects. Good for the beginning of a mission.
Execution:
spawn
Groups:
Uncategorised

Syntax

Syntax:
[string1, string2, (...)] spawn BIS_fnc_infoText
Parameters:
Array of string
Return Value:
Nothing

Examples

Example 1:
["Somewhere on Altis", format ["year %1", date select 0], mapGridPosition player] spawn BIS_fnc_infoText;

Additional Information

See also:
BIS_fnc_dynamicTextBIS_fnc_textTilesBIS_fnc_typeTextBIS_fnc_typeText2

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