assert: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
No edit summary
mNo edit summary
Line 28: Line 28:
____________________________________________________________________________________________
____________________________________________________________________________________________


| [[try]], [[catch]], [[diag_captureFrame]], [[diag_captureSlowFrame]], [[diag_logSlowFrame]]|= See also
| [[try]], [[catch]], [[throw]], [[diag_captureFrame]], [[diag_captureSlowFrame]], [[diag_logSlowFrame]]|= See also


}}
}}

Revision as of 22:47, 17 December 2013

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

Description

Description:
Tests a condition and if the condition is false, displays error on screen (if -showscripterrors enabled) and logs error into .rpt file. It does not interrupt the script execution. If script was pre-processed with preprocessFileLineNumbers, it will also show/log the error line number and the file name.
Groups:
Uncategorised

Syntax

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

Examples

Example 1:
assert (1>2); PreprocessFile.jpg

Additional Information

See also:
trycatchthrowdiag_captureFramediag_captureSlowFramediag_logSlowFrame

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, and returns true, if condition is true.

Bottom Section