Hi, Cento.
There is currently no, 'or' or 'and'. In your example, you will need to nest your conditional statements:
If {CMD} does not contain [variable 1]
If {CMD} does not contain [variable 2]
If {CMD} does not contain [variable 3]
Execute Command
End If
End If
End If
(there is no need for, 'else')
On a side note, notice that the example above resolves as, 'and's and not 'or's. 'Not' and 'Or' in your example will yield results that you would not want. For example, if you want to execute the command only if it does not contain, 'weapon' or, 'missile':
Spoken command by user: 'fire weapon'
if {CMD} does not contain 'weapon'
does not execute (good)
-OR-
if {CMD} does not contain 'missile'
executes (not good)
Hope that helps some!
Gary