assert: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
No edit summary
No edit summary
Line 9: Line 9:
| Tests a condition and if the condition is false, exits the handle.
| Tests a condition and if the condition is false, exits the handle.


Nonsense: If condition is false, it only returns an Error. |= Description
Does not work properly: If condition is false, it only returns an Error. |= Description
____________________________________________________________________________________________
____________________________________________________________________________________________



Revision as of 00:36, 15 May 2010

-wrong parameter ("Arma") defined!-1.00
Hover & click on the images for description

Description

Description:
Tests a condition and if the condition is false, exits the handle. Does not work properly: If condition is false, it only returns an Error.
Groups:
Uncategorised

Syntax

Syntax:
assert condition
Parameters:
condition: Boolean
Return Value:
Boolean

Examples

Example 1:
assert (_x>0)

Additional Information

See also:
exitWith

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

Posted on May 15, 2010 - 0:01
Roehre
Returns false, if condition is false (it does close script) and returns true, if condition is true (it doesn't close script).

Bottom Section