Difference between revisions of "BIS fnc help"

From Bohemia Interactive Community
Jump to navigation Jump to search
m
Line 43: Line 43:
 
Usefull tips, make a trigger with the following data:
 
Usefull tips, make a trigger with the following data:
  
Cond: !isnil "bis_fnc_init"
+
<code>Cond: !isnil "bis_fnc_init"
  
OnAct: [] call BIS_fnc_help;
+
OnAct: [] call BIS_fnc_help;</code>
 
<!-- Note Section END -->
 
<!-- Note Section END -->
 
</dl>
 
</dl>

Revision as of 13:03, 16 August 2009

Hover & click on the images for description

Description

Description:
Shows Function Library viewer, which contains list of all available functions, both official and unofficial. Fnc help.jpg
Groups:
Uncategorised

Syntax

Syntax:
[] call BIS_fnc_help
Return Value:
Boolean

Examples

Example 1:
[] call bis_fnc_help

Additional Information

See also:
Functions Library

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

Usefull tips, make a trigger with the following data: Cond: !isnil "bis_fnc_init" OnAct: [] call BIS_fnc_help;

Bottom Section