Hey again :D, you have to move the ! operator inside the if(..) clause...

if (!((10 <= my.x) && (15 => my.x))) {wait(1);}

The ! operator has higher precedence than the && operator, so we enclose the inner statement in parenthesis ( ) and then negate the whole expression.