BIS fnc advHintCall: Difference between revisions

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


| arma3 |= Game name
| arma3 |Game name=


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


| <pre>/*
| Advanced hint call, creates hint itself.<br>
File: advHintCall.sqf
This function gets parameters from variable '''BIS_fnc_advHint_hint''':<br>
BIS_fnc_advHint_hint select 0: [[String]] - Class of hint<br>
BIS_fnc_advHint_hint select 1: [[String]] - Structured text of full hint<br>
BIS_fnc_advHint_hint select 2: [[String]] - Structured text of short hint<br>
BIS_fnc_advHint_hint select 3: [[Number]] - Duration of short hint in seconds<br>
BIS_fnc_advHint_hint select 4: [[String]] - Condition for hiding of short hint (default: "false")<br>
BIS_fnc_advHint_hint select 5: [[Number]] - Duration of full hint in seconds<br>
BIS_fnc_advHint_hint select 6: [[String]] - Condition for hiding of full hint (default: "false")<br>
BIS_fnc_advHint_hint select 7: [[Bool]] - True shows directly full hint (default: [[false]])<br>
BIS_fnc_advHint_hint select 8: [[Bool]] - True for using of sound (default: [[true]])|Description=
____________________________________________________________________________________________


Description:
| fullTextcall call [[BIS_fnc_advHintCall]] |Syntax=
Advanced hint call, creates hint itself


Parameter(s):
|p1=fullText: [[Boolean]] - [[True]] to show full text, [[false]] to only show small hint notification |Parameter 1=
_this select 0: Bool - True for full text, false for small hint notification
This function gets parameters from variable BIS_fnc_advHint_hint:
BIS_fnc_advHint_hint select 0: String - Class of hint
BIS_fnc_advHint_hint select 1: String - Structured text of full hint
BIS_fnc_advHint_hint select 2: String - Structured text of short hint
BIS_fnc_advHint_hint select 3: Number - Duration of short hint in seconds
BIS_fnc_advHint_hint select 4: String - Condition for hiding of short hint (default: "false")
BIS_fnc_advHint_hint select 5: Number - Duration of full hint in seconds
BIS_fnc_advHint_hint select 6: String - Condition for hiding of full hint (default: "false")
BIS_fnc_advHint_hint select 7: Bool - True shows directly full hint (default: false)
BIS_fnc_advHint_hint select 8: Bool - True for using of sound (default: true)


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


| <!-- [] call [[BIS_fnc_advHintCall]]; --> |= Syntax
|x1= <code>false [[call]] [[BIS_fnc_advHintCall]];</code>|Example 1=
 
|p1= |= Parameter 1


| |= Return value
____________________________________________________________________________________________
____________________________________________________________________________________________


|x1= <code></code> |=  
| [[BIS_fnc_advHint]], [[BIS_fnc_advHintFormat]], [[BIS_fnc_advHintArg]]  |See also=
____________________________________________________________________________________________
}}


| |= See also
}}


<h3 style="display:none">Notes</h3>
<h3 style="display:none">Notes</h3>

Revision as of 22:02, 20 June 2018

Hover & click on the images for description

Description

Description:
Advanced hint call, creates hint itself.
This function gets parameters from variable BIS_fnc_advHint_hint:
BIS_fnc_advHint_hint select 0: String - Class of hint
BIS_fnc_advHint_hint select 1: String - Structured text of full hint
BIS_fnc_advHint_hint select 2: String - Structured text of short hint
BIS_fnc_advHint_hint select 3: Number - Duration of short hint in seconds
BIS_fnc_advHint_hint select 4: String - Condition for hiding of short hint (default: "false")
BIS_fnc_advHint_hint select 5: Number - Duration of full hint in seconds
BIS_fnc_advHint_hint select 6: String - Condition for hiding of full hint (default: "false")
BIS_fnc_advHint_hint select 7: Bool - True shows directly full hint (default: false)
BIS_fnc_advHint_hint select 8: Bool - True for using of sound (default: true)
Execution:
call
Groups:
Uncategorised

Syntax

Syntax:
fullTextcall call BIS_fnc_advHintCall
Parameters:
fullText: Boolean - True to show full text, false to only show small hint notification
Return Value:
Nothing

Examples

Example 1:
false call BIS_fnc_advHintCall;

Additional Information

See also:
BIS_fnc_advHintBIS_fnc_advHintFormatBIS_fnc_advHintArg

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