simple basic question "Not equal to"

Hi there

A very simple question

what is the symbole to use for “different” on a In-line Expressions
for exemple {PlayerSide ‘is not’ XXX} for a restrict command property

And more géneraly where to find all the one we can use ?
Thanks again

You have the curly braces so I assume you’re using the beanshell expression builder. So the answer would be:
PlayerSide != “Allies”
If you were using old-style w/o expression builder you would say
PlayerSide != Allies

When you’re IN the expression builder, the “Add” button will lead you to a menu of all the things you can use.

Yes Thanks a lot !!!