Hi everyone.
This is my problem...
I'm new using construct 2 and I'm stuck.
After the wait finish, I need to know the value in "linea_movimiento" in that moment and then, move the "player" depending on that value (1 right, 2 left, 3 up, 4 down)...
I'm trying to do something like this:
________________________________
if(linea_movimiento==1)
player.move(right)
if(linea_movimiento==2)
player.move(left)
... etc...
_________________________________
Thanks.