BIS fnc infoText: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - " *\|= * " to " ")
m (Text replacement - " *\| *([Cc]omments|COMMENTS|[Gg]ame [Nn]ame|Game [Vv]ersion|Game Version \(number surrounded by NO SPACES\)|Multiplayer Arguments \("local" or "global"\)|Multiplayer Effects \("local" or "global"\)|Multiplayer Execution \("server" o...)
Line 1: Line 1:
{{Function|Comments=
{{Function


| arma2oa |Game name=
| arma2oa


|1.51|Game version=
|1.51


|gr1= GUI |GROUP1=
|gr1= GUI


|eff= local |Multiplayer Arguments=
|eff= local |Multiplayer Arguments=


| Display a text in the "mission" GUI area with some effects. Good for the beginning of a mission.
| Display a text in the "mission" GUI area with some effects. Good for the beginning of a mission.
[[File:BIS fnc infoText.gif|thumb|left|400px|Example 1 (Click to enlarge)]]|DESCRIPTION=
[[File:BIS fnc infoText.gif|thumb|left|400px|Example 1 (Click to enlarge)]]


| [string_1, string_2, string_n] spawn [[BIS_fnc_infoText]] |SYNTAX=
| [string_1, string_2, string_n] spawn [[BIS_fnc_infoText]]


|p1= [[Array]] of [[String|strings]] |PARAMETER1=
|p1= [[Array]] of [[String|strings]]


| [[Nothing]] |RETURNVALUE=
| [[Nothing]]


|x1= <code>[ "Somewhere on Altis", [[format]] ["Year %1", date select 0], [[mapGridPosition]] [[player]] ] [[spawn]] '''BIS_fnc_infoText''';</code>
|x1= <code>[ "Somewhere on Altis", [[format]] ["Year %1", date select 0], [[mapGridPosition]] [[player]] ] [[spawn]] '''BIS_fnc_infoText''';</code>
Line 22: Line 22:
|exec= spawn |Execution= By
|exec= spawn |Execution= By


| [[BIS_fnc_dynamicText]], [[BIS_fnc_textTiles]], [[BIS_fnc_typeText]], [[BIS_fnc_typeText2]], [[BIS_fnc_EXP_camp_SITREP]] |SEEALSO=
| [[BIS_fnc_dynamicText]], [[BIS_fnc_textTiles]], [[BIS_fnc_typeText]], [[BIS_fnc_typeText2]], [[BIS_fnc_EXP_camp_SITREP]]


}}
}}

Revision as of 00:09, 18 January 2021

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.
Example 1 (Click to enlarge)
Execution:
spawn
Groups:
GUI

Syntax

Syntax:
[string_1, string_2, string_n] spawn BIS_fnc_infoText
Parameters:
Array of strings
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_typeText2BIS_fnc_EXP_camp_SITREP

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


Bottom Section