-: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) (Page creation) |
Lou Montana (talk | contribs) (Add unary minus) |
||
Line 20: | Line 20: | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
|s2= | |s2= [[-]] numberA |Syntax 2= | ||
|p21 = | |p21 = numberA: [[Number]] |Parameter 21= | ||
| | |r2= [[Number]] - the negative of ''numberA'' |Return value 2= | ||
____________________________________________________________________________________________ | |||
| | |s3= arrayA [[-]] arrayB |Syntax 3= | ||
|p41 = arrayA: [[Array]] |Parameter 41= | |||
|p42 = arrayB: [[Array]] |Parameter 42= | |||
|r3= [[Array]] |Return value 3= | |||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
|x1 = <code>_result = 10 - 7; {{codecomment|// result is 3}}</code>|Example 1= | |x1= <code>_result = 10 - 7; {{codecomment|// result is 3}}</code> |Example 1= | ||
|x2= <code>_numA = 4; | |||
_numB = -_numA; {{codecomment|// result is -4}} | |||
_numB = -_numB; {{codecomment|// result is 4}}</code> |Example 2= | |||
| | |x3= <code>_result = [1, 2, 2, [[player]], "String"] - [2, [[player]], [[player]], "String"]; {{codecomment|// _result is [1]}}</code> |Example 3= | ||
| | |x4= <code>_result = [0, [0], <nowiki>[</nowiki>[0]]] - [0]; {{codecomment|// <nowiki>[</nowiki>[0],<nowiki>[</nowiki>[0]]]}}</code> |Example 4= | ||
| | |x5= <code>_result = [0, [0], <nowiki>[</nowiki>[0]]] - <nowiki>[</nowiki>[0]]; {{codecomment|// [0,<nowiki>[</nowiki>[0]]] - Since {{arma3}}}} | ||
_result = [0, [0], <nowiki>[</nowiki>[0]]] - <nowiki>[</nowiki><nowiki>[</nowiki>[0]]]; {{codecomment|// [0,[0]] - Since {{arma3}}}}</code> |Example | _result = [0, [0], <nowiki>[</nowiki>[0]]] - <nowiki>[</nowiki><nowiki>[</nowiki>[0]]]; {{codecomment|// [0,[0]] - Since {{arma3}}}}</code> |Example 5= | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
Revision as of 10:21, 7 February 2019
Description
- Description:
- Subtracts an element from another.
- Groups:
- Uncategorised
Syntax 1
Syntax 2
Syntax 3
Examples
- Example 1:
_result = 10 - 7; // result is 3
- Example 2:
_numA = 4; _numB = -_numA; // result is -4 _numB = -_numB; // result is 4
- Example 3:
_result = [1, 2, 2, player, "String"] - [2, player, player, "String"]; // _result is [1]
- Example 4:
_result = [0, [0], [[0]]] - [0]; // [[0],[[0]]]
- Example 5:
_result = [0, [0], [[0]]] - [[0]]; // [0,[[0]]] - Since Arma 3 _result = [0, [0], [[0]]] - [[[0]]]; // [0,[0]] - Since Arma 3
Additional Information
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
Bottom Section
Categories:
- Scripting Commands
- Introduced with Operation Flashpoint version 1.00
- Operation Flashpoint: New Scripting Commands
- Operation Flashpoint: Scripting Commands
- Command Group: Uncategorised
- Scripting Commands OFP 1.46
- Scripting Commands OFP 1.96
- Scripting Commands OFP 1.99
- Scripting Commands ArmA
- Scripting Commands ArmA2
- Scripting Commands Take On Helicopters
- Scripting Commands Arma 3
- Command Group: Math
- Command Group: Variables