-: Difference between revisions
Jump to navigation
Jump to search
(Disambig page) |
Lou Montana (talk | contribs) (Page creation) |
||
Line 1: | Line 1: | ||
{{Command|Comments= | |||
____________________________________________________________________________________________ | |||
| ofp |Game name= | |||
= | |1.00|Game version= | ||
____________________________________________________________________________________________ | |||
| Subtracts an element from another. | |||
{{Feature arma3|In Arma 3 it is possible to subtract nested arrays.}}|Description= | |||
____________________________________________________________________________________________ | |||
{{ | | numberA [[-]] numberB |Syntax= | ||
|p1 = numberA: [[Number]] |Parameter 1= | |||
|p2 = numberB: [[Number]] |Parameter 2= | |||
| [[Number]] |Return value= | |||
____________________________________________________________________________________________ | |||
|s2= arrayA [[-]] arrayB |Syntax 2= | |||
|p21 = arrayA: [[Array]] |Parameter 21= | |||
|p22 = arrayB: [[Array]] |Parameter 22= | |||
|r2= [[Array]] |Return value 2= | |||
____________________________________________________________________________________________ | |||
|x1 = <code>_result = 10 - 7; {{codecomment|// result is 3}}</code>|Example 1= | |||
|x2 = <code>_result = [1, 2, 2, [[player]], "String"] - [2, [[player]], [[player]], "String"]; {{codecomment|// _result is [1]}}</code>|= | |||
|x3 = <code>_result = [0, [0], <nowiki>[</nowiki>[0]]] - [0]; {{codecomment|// <nowiki>[</nowiki>[0],<nowiki>[</nowiki>[0]]]}}</code> |Example 3= | |||
|x4 = <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 4= | |||
____________________________________________________________________________________________ | |||
| [[Array]], [[Operators]] |See also= | |||
}} | |||
<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.46|#]] | |||
[[Category:Scripting Commands OFP 1.96|#]] | |||
[[Category:Scripting Commands OFP 1.99|#]] | |||
[[Category:Scripting Commands ArmA|#]] | |||
[[Category:Scripting Commands ArmA2|#]] | |||
[[Category:Scripting Commands Take On Helicopters|#]] | |||
[[Category:Scripting Commands Arma 3|#]] | |||
[[Category:Command_Group:_Math|#]] | |||
[[Category:Command_Group:_Variables|#]] |
Revision as of 17:42, 6 February 2019
Description
- Description:
- Subtracts an element from another.
- Groups:
- Uncategorised
Syntax
Alternative Syntax
Examples
- Example 1:
_result = 10 - 7; // result is 3
- Example 2:
_result = [1, 2, 2, player, "String"] - [2, player, player, "String"]; // _result is [1]
- Example 3:
_result = [0, [0], [[0]]] - [0]; // [[0],[[0]]]
- Example 4:
_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