|
|
(2 intermediate revisions by the same user not shown) |
Line 1: |
Line 1: |
| {{Command|= Comments
| |
| ____________________________________________________________________________________________
| |
|
| |
|
| | ofp |Game Name=
| |
|
| |
| |1.00|Game Version=
| |
| ____________________________________________________________________________________________
| |
|
| |
| | Returns a negation of Boolean expression. That means <tt>[[true]]</tt> becomes <tt>[[false]]</tt> and vice versa. |DESCRIPTION=
| |
| ____________________________________________________________________________________________
| |
|
| |
| | [[Boolean]] <nowiki>=</nowiki> '''!''' a |SYNTAX=
| |
|
| |
| |p1= a: [[Boolean]] |PARAMETER1=
| |
|
| |
| | [[Boolean]] |RETURNVALUE=
| |
| ____________________________________________________________________________________________
| |
|
| |
| |x1= The code
| |
| <code>_a = [[alive]] [[player]];
| |
| [[if]] ([[!_a]]) [[then]] {
| |
| [[hint]] "The player is dead!";
| |
| }</code>
| |
| is the same as
| |
| <code>_a = [[alive]] [[player]];
| |
| [[if]] [[not]] (_a) [[then]] {
| |
| [[hint]] "The player is dead!";
| |
| }</code> |EXAMPLE1=
| |
| ____________________________________________________________________________________________
| |
|
| |
| | [[not]], [[Operators]] |SEEALSO=
| |
|
| |
| }}
| |
|
| |
| <h3 style="display:none">Notes</h3>
| |
| <dl class="command_description">
| |
| <!-- Note Section BEGIN -->
| |
|
| |
| <!-- Note Section END -->
| |
| </dl>
| |
|
| |
| <h3 style="display:none">Bottom Section</h3>
| |
|
| |
| <!--[[Category:Scripting Commands|#]]
| |
| [[Category:Scripting Commands OFP 1.99|#]]
| |
| [[Category:Scripting Commands OFP 1.96|#]]
| |
| [[Category:Scripting Commands OFP 1.46|#]]
| |
| [[Category:Scripting Commands ArmA|#]]
| |
| [[Category:Scripting Commands ArmA2|#]]
| |
| [[Category:Scripting Commands Arma 3|#]]
| |
| [[Category:Command_Group:_Math|#]]
| |
| [[Category:Command_Group:_Variables|#]]-->
| |