assert: Difference between revisions
Jump to navigation
Jump to search
RoehrenRadio (talk | contribs) (Still not fixed in ArmA2 1.08 / ArmA2OA 1.54, poor just poor.) |
m (VBS2 scripting category removal) |
||
Line 40: | Line 40: | ||
[[Category:Command_Group:_Program_Flow|{{uc:{{PAGENAME}}}}]] | [[Category:Command_Group:_Program_Flow|{{uc:{{PAGENAME}}}}]] | ||
[[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]] | [[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]] | ||
Revision as of 05:08, 19 July 2011
Description
- Description:
- Tests a condition and if the condition is false, exits the handle. Does not work properly in ArmA2(OA) 1.08(1.54) : If condition is false, it only returns an empty Error Message without closing the Script.
- Groups:
- Uncategorised
Syntax
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).