Property

Hey all,

Is there a way to say without python:

if prop1 equals prop2, play action

Thanks. :wink:

with an expresion controller:

sensor prop1 changed
sensor prop2 changed
–>
controller expression prop1 == prop2
–>
actuator

I think that should do it.

Thanks! ^^

One more problem… I need him to NOT play at a prop = prop1. :stuck_out_tongue:

just do the same thing,

sensor prop changed
sensor prop1 changed
sensor prop2 changed
#############
controller expression prop1 == prop2 and prop != prop1
#############
actuator

(I thought the way Monster put it made it better to understand)

Oke thanks a lot you both! ^^

I didn’t know about != and == so that’s why. :wink:

Thanks! ^^