a != b: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "|= Comments" to "|Comments=") |
Lou Montana (talk | contribs) (Fix page) |
||
Line 2: | Line 2: | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
| ofp | | | ofp |game name= | ||
|1.00| | |1.00|game version= | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
| Returns whether one value is '''not''' equal to another. |DESCRIPTION= | | Returns whether one value is '''not''' equal to another. String comparison is case-'''in'''sensitive (e.g {{Inline code|"STRINGtext" [[a != b|!=]] "stringTEXT" {{cc|returns [[false]]}}}}). | ||
{{Informative | In Arma series you '''cannot''' compare [[Boolean]]s: {{Inline code|[[alive]] [[player]] [[a != b|!=]] [[true]] {{cc|will throw an error}}}}}} |DESCRIPTION= | |||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
| a | | a [[a != b|!=]] b |SYNTAX= | ||
|p1= a: [[Number]], [[Side]], [[String]], [[Object]], [[Group]], [[Structured Text]], [[Config]], [[Display]] | |p1= a: [[Number]], [[Side]], [[String]], [[Object]], [[Group]], [[Structured Text]], [[Config]], [[Display]], [[Control]] or [[Location]] |Parameter 1= | ||
|p2= b: [[Number]], [[Side]], [[String]], [[Object]], [[Group]], [[Structured Text]], [[Config]], [[Display]] | |p2= b: [[Number]], [[Side]], [[String]], [[Object]], [[Group]], [[Structured Text]], [[Config]], [[Display]], [[Control]] or [[Location]] |Parameter 2= | ||
| [[Boolean]] - | | [[Boolean]] - [[true]] if a is different from b |RETURNVALUE= | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
|x1= <code>[[if]] (_counter != 4) [[then]] { | |x1= <code>[[if]] (_counter [[a != b|!=]] 4) [[then]] { | ||
[[hint]] "The counter is not equal to the number 4"; | |||
}</code> |EXAMPLE1= | }</code> |EXAMPLE1= | ||
|x2= <code>[[if]] ([[vehicle]] [[player]] != [[player]]) [[then]] { | |x2= <code>[[if]] ([[vehicle]] [[player]] [[a != b|!=]] [[player]]) [[then]] { | ||
[[hint]] "you are in a vehicle"; | |||
} [[else]] { | } [[else]] { | ||
[[hint]] "you are on foot"; | |||
}</code> |EXAMPLE2= | }</code> |EXAMPLE2= | ||
|x3= <code>[[if]] ([[fuel]] truck1 != 1) [[then]] { | |x3= <code>[[if]] ([[fuel]] truck1 [[a != b|!=]] 1) [[then]] { | ||
[[hint]] "Truck1 has less than a full tank of fuel."; | |||
}</code> |EXAMPLE3= | }</code> |EXAMPLE3= | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
| [[Operators]] |SEEALSO= | | [[Operators]] |SEEALSO= | ||
}} | }} | ||
Line 45: | Line 41: | ||
<dl class="command_description"> | <dl class="command_description"> | ||
<!-- Note Section BEGIN --> | <!-- Note Section BEGIN --> | ||
<!-- Note Section END --> | <!-- Note Section END --> | ||
</dl> | </dl> | ||
Line 55: | Line 48: | ||
[[Category:Scripting Commands|#]] | [[Category:Scripting Commands|#]] | ||
[[Category:Scripting Commands OFP 1.46|#]] | |||
[[Category:Scripting Commands OFP 1.96|#]] | |||
[[Category:Scripting Commands OFP 1.99|#]] | [[Category:Scripting Commands OFP 1.99|#]] | ||
[[Category:Scripting Commands ArmA|#]] | [[Category:Scripting Commands ArmA|#]] | ||
[[Category:Scripting Commands ArmA2|#]] | [[Category:Scripting Commands ArmA2|#]] |
Revision as of 23:59, 30 August 2019
Description
- Description:
- Returns whether one value is not equal to another. String comparison is case-insensitive (e.g
"STRINGtext" != "stringTEXT" // returns false
). - Groups:
- Uncategorised
Syntax
- Syntax:
- a != b
- Parameters:
- a: Number, Side, String, Object, Group, Structured Text, Config, Display, Control or Location
- b: Number, Side, String, Object, Group, Structured Text, Config, Display, Control or Location
- Return Value:
- Boolean - true if a is different from b
Examples
- Example 1:
if (_counter != 4) then { hint "The counter is not equal to the number 4"; }
- Example 2:
if (vehicle player != player) then { hint "you are in a vehicle"; } else { hint "you are on foot"; }
- Example 3:
if (fuel truck1 != 1) then { hint "Truck1 has less than a full tank of fuel."; }
Additional Information
- See also:
- Operators
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 Arma 3
- Command Group: Math
- Command Group: Variables