I'm making a game that requires some complex if statements, here is the code that doesn't work
If K=25 and not(Y=1) and not([A](X,Y-1)=1)
Then
... Other Code ...
End
but it works when I do
If K=25 and not(Y=1)
Then
If not([A](X,Y-1)=1)
Then
.. Other Code ..
End
End
What's the problem?