BIS fnc taskExists: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (1 revision)
No edit summary
Line 23: Line 23:
____________________________________________________________________________________________
____________________________________________________________________________________________


| <!-- [] call [[BIS_fnc_taskExists]]; --> |= Syntax
| ["Task"] call [[BIS_fnc_taskExists]]; |= Syntax


|p1= |= Parameter 1
|p1= "Task": String - Task name |= Parameter 1


| |= Return value
| [[Bool]]|= Return value
____________________________________________________________________________________________
____________________________________________________________________________________________


|x1= <code></code> |=  
|x1= <code>_exists = ["MyTask"] call BIS_fnc_taskExists; </code> |=  
____________________________________________________________________________________________
____________________________________________________________________________________________



Revision as of 15:11, 11 December 2015


Hover & click on the images for description

Description

Description:
/*
	
	Description:
	Return if a task exists.
	
	Parameters:
		0: STRING - Task name
	
	Returns:
	True if the task exists, false if not.
*/

(Placeholder description extracted from the function header by BIS_fnc_exportFunctionsToWiki)
Execution:
call
Groups:
Uncategorised

Syntax

Syntax:
["Task"] call BIS_fnc_taskExists;
Parameters:
"Task": String - Task name
Return Value:
Bool

Examples

Example 1:
_exists = ["MyTask"] call BIS_fnc_taskExists;

Additional Information

See also:
See also needed

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