Home   Help Search Login Register  

Author Topic: Condition NOT in Vehicle  (Read 487 times)

0 Members and 1 Guest are viewing this topic.

GingaWRATH

  • Guest
Condition NOT in Vehicle
« on: 01 Oct 2004, 08:13:41 »
Any one know the condition to check when a ai/player is NOT in a Vehicle.

since there is a,  guy in vehiclename condition. Why is there not a  Guy not in vehiclename

Offline THobson

  • OFPEC Patron
  • Former Staff
  • ****
Re:Condition NOT in Vehicle
« Reply #1 on: 01 Oct 2004, 08:17:55 »
You don't need specific not conditions.  Just put
not or ! in front of any condition and it will become the 'not' of what it was.  It helps to put brackets around complicated expressions so you might have:

not (complicated expression that results in a true or false value)

or:

! (complicated expression that results in a true or false value)

which means the same.  I don't like using ! but many others use it.
« Last Edit: 01 Oct 2004, 08:29:59 by THobson »

GingaWRATH

  • Guest
Re:Condition NOT in Vehicle
« Reply #2 on: 01 Oct 2004, 08:45:08 »
Again u the MAN Thanx ;D