Hello, currently construct can do this:
condition 1 or condition 2.
OK
But this I can not do:
(Condition 1 and Condition 2) or Condition 3
It is a modified image.
I'm wrong?.
Or if it can be done ?.
Develop games in your browser. Powerful, performant & highly capable.
one way
compare two values
1=( (jugador.x<manzana.x-48) & (jugador.x>=manzana.x-64) ) | (jugador.x<manzana.x-200)
I'm not sure I understood.
If I use "compare two values" twice and then add "make or block", happens this:
I want to do this, to add a third condition and get what would this:
((condition 1 and condition 2) or condition 3)
Modified image
Ok, you wanted to say this:
Thanks!.
no, I wanted to say
add condition
make this a system condition
select the
general - compare two values
in first value - 1
in second value - ( (jugador.x<manzana.x-48) & (jugador.x>=manzana.x-64) ) | (jugador.x<manzana.x-200)
The "&" is logical AND the "|" is logical OR
Ok, I think I understand, there are several ways of doing this.
Thanks again.
There are always several ways of doing anything in programming ...
Glad I could help