BIS fnc advHint: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "|= Comments" to "|Comments=")
m (Some wiki formatting)
 
(41 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Function|Comments=
{{RV|type=function
____________________________________________________________________________________________


| arma3 |= Game name
|game1= arma3
|version1= 1.00


|1.00|= Game version
|gr1= GUI
____________________________________________________________________________________________


| Shows advanced hint to player.|DESCRIPTION=
|descr= Shows advanced hint to player.
____________________________________________________________________________________________


| [classes, duration1, condition1, duration2, condition2, showing, onlyFullHint, onlyOnce, useSound] call '''BIS_fnc_advHint'''; |SYNTAX=
|s1= [classes, duration1, condition1, duration2, condition2, showing, onlyFullHint, onlyOnce, useSound] call [[BIS_fnc_advHint]]


|p1= '''classes''': [[Array]] - Array in format ["hint main class","hint class"] |=
|p1= '''classes''': [[Array]] - array in format ["hint main class", "hint class"]
|p2= '''duration1''': [[Number]] (Optional) - Duration of short hint in seconds. ''(Default 15s)'' |=
|p3= '''condition1''': [[String]] (Optional) - Condition for hiding of short hint ''(Default "")'' |=
|p4= '''duration2''': [[Number]] (Optional) - Duration of full hint in seconds ''(Default 35s)'' |=
|p5= '''condition2''': [[String]] (Optional) - Condition for hiding of full hint ''(Default "")'' |=
|p6= '''showing''': [[Boolean]] (Optional) - True shows hint even if tutorial hints are disabled in game settings ''(Default false)'' |=
|p7= '''onlyFullHint''': [[Boolean]] (Optional) - True shows full hint without using of short hint ''(Default false)'' |=
|p8= '''onlyOnce''': [[Boolean]] (Optional) - Show the hint in mission only once (true) or multiple times (false) ''(Default false)'' |=
|p9= '''useSound''': [[Boolean]] (Optional) - True plays a sound when the hint is opened ''(Default true)'' |=


| [[Nothing]]  |RETURNVALUE=
|p2= '''duration1''': [[Number]] - (Optional, default 15) duration of short hint in seconds
____________________________________________________________________________________________
 
|x1= <code><nowiki>[["Common", "GPS"]]</nowiki> [[call]] [[BIS_fnc_advHint]];</code> |=
|x2= <code><nowiki>[["Common", "GPS"], 15,"",35,"",false,false,false,true]</nowiki> [[call]] [[BIS_fnc_advHint]];//Default</code> |=
____________________________________________________________________________________________


| [[Arma_3_Advanced_Hints_(Field_Manual)|Advanced Hints]], [[BIS_fnc_advHintFormat]], [[BIS_fnc_advHintCall]], [[BIS_fnc_advHintArg]] |SEEALSO=
|p3= '''condition1''': [[String]] - (Optional, default "") condition for hiding the short hint


}}
|p4= '''duration2''': [[Number]] - (Optional, default 35) duration of full hint in seconds
 
|p5= '''condition2''': [[String]] - (Optional, default "") condition for hiding the full hint
 
|p6= '''showing''': [[Boolean]] - (Optional, default [[false]]) true shows hint even if tutorial hints are disabled in game settings
 
|p7= '''onlyFullHint''': [[Boolean]] - (Optional, default [[false]]) true shows full hint without using of short hint
 
|p8= '''onlyOnce''': [[Boolean]] - (Optional, default [[false]]) show the hint in mission only once (true) or multiple times (false)
 
|p9= '''useSound''': [[Boolean]] - (Optional, default [[true]]) true plays a sound when the hint is opened
 
|r1= [[Nothing]]


<h3 style="display:none">Notes</h3>
|x1= <sqf>[["Common", "GPS"]] call BIS_fnc_advHint;</sqf>
<dl class="command_description">
<!-- Note Section BEGIN -->


<!-- Note Section END -->
|x2= <sqf>[["Common", "GPS"], 15, "", 35, "", false, false, false, true] call BIS_fnc_advHint; // default</sqf>
</dl>


<h3 style="display:none">Bottom Section</h3>
|seealso= [[Arma 3: Advanced Hints (Field Manual)|Advanced Hints]] [[BIS_fnc_advHintFormat]] [[BIS_fnc_advHintCall]] [[BIS_fnc_advHintArg]]
[[Category:Function Group: Hints|{{uc:advHint}}]]
}}
[[Category:Functions|{{uc:advHint}}]]
[[Category:{{Name|arma3}}: Functions|{{uc:advHint}}]]


<!-- CONTINUE Notes -->
{{Note
<dl class="command_description">
|user= Sixtyfour
<dd class="notedate">Posted on August 13, 2016 - 12:09 (UTC)</dd>
|timestamp= 20160813120900
<dt class="note">[[User:Sixtyfour|Sixtyfour]]</dt>
|text= This command will not do anything for players who have "Tutorial Hints" disabled in their Options > Game difficulty settings or on servers that disable it in their relevant difficulty preset.
<dd class="note">
}}
This command will not do anything for players who have "Tutorial Hints" disabled in their Options > Game difficulty settings or on servers that disable it in their relevant difficulty preset.
</dd>
</dl>
<!-- DISCONTINUE Notes -->

Latest revision as of 16:30, 13 July 2022

Hover & click on the images for description

Description

Description:
Shows advanced hint to player.
Execution:
call
Groups:
GUI

Syntax

Syntax:
[classes, duration1, condition1, duration2, condition2, showing, onlyFullHint, onlyOnce, useSound] call BIS_fnc_advHint
Parameters:
classes: Array - array in format ["hint main class", "hint class"]
duration1: Number - (Optional, default 15) duration of short hint in seconds
condition1: String - (Optional, default "") condition for hiding the short hint
duration2: Number - (Optional, default 35) duration of full hint in seconds
condition2: String - (Optional, default "") condition for hiding the full hint
showing: Boolean - (Optional, default false) true shows hint even if tutorial hints are disabled in game settings
onlyFullHint: Boolean - (Optional, default false) true shows full hint without using of short hint
onlyOnce: Boolean - (Optional, default false) show the hint in mission only once (true) or multiple times (false)
useSound: Boolean - (Optional, default true) true plays a sound when the hint is opened
Return Value:
Nothing

Examples

Example 1:
[["Common", "GPS"]] call BIS_fnc_advHint;
Example 2:
[["Common", "GPS"], 15, "", 35, "", false, false, false, true] call BIS_fnc_advHint; // default

Additional Information

See also:
Advanced Hints BIS_fnc_advHintFormat BIS_fnc_advHintCall BIS_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
Sixtyfour - c
Posted on Aug 13, 2016 - 12:09 (UTC)
This command will not do anything for players who have "Tutorial Hints" disabled in their Options > Game difficulty settings or on servers that disable it in their relevant difficulty preset.