You are using third party plugins in your capx, so I can't open it.
What I meant is that you probably have your events set up like this:
1.- If A is down - do this
2.- If W is down - do this
3.- If A is down and W is down - do this
If event 3 is true, event 1 and 2 are also true.
To prevent this you could do something like this:
1.- If A is down and W is not down - do this
2.- If W is down and A is not down - do this
3.- If A is down and W is down - do this
this way it's impossible for all three events to be true at the same time.
This could be simplified by using subevents and else statements, but the above explains the basics.