! a
From Bohemia Interactive Community
| Editors, please check Policy: Scripting Command Page Syntax. |
Click on the images for descriptions
Introduced in
- Game:
- Operation Flashpoint
- Version:
- 1.00
Description
- Description:
- Returns a negation of Boolean expression. That means true becomes false and vica versa.
Syntax
Examples
- Example 1:
- The code
_a = alive player; if(!_a) then { hint "The player is dead!"; }
is the same as
_a = alive player; if not (_a) then { hint "The player is dead!"; }

