a != b
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 whether one value is not equal to another.
Syntax
- Syntax:
- a != b
- Parameters:
- a: Number, Side, String, Object, Group, Structured Text, Config, Display or Control
- b: Number, Side, String, Object, Group, Structured Text, Config, Display or Control
- Return Value:
- Boolean - true if a is not the same as b
Examples
- Example 1:
- Some basic examples of the usage of this operator.
counter != 4
side player != west
nameofplayer != "John Doe"
vehicle player != player
group player != group soldierOne
if (fuel truck1 != 1) then { hint "Truck1 has less than a full tank of fuel."; }
Additional Information
- Multiplayer:
- Behaviour unknown.
- See also:
- Operators
Notes
Notes
Notes
- Ceeeb
- In OFP v1.96, comparison of strings is not case sensitive. Example : "STRINGtext" != "stringTEXT" returns false.

