Why would you use a While in this situation ?
A is true-->do some action
OR
B is true
as long as either A or B is true the action fires so it is basically the same as , While A is true OR B is true
I want to do the event if one or the other is true. If I check one then do the action, then I change my conditions.
For example, I want to store a value that is not a repeat in a 3,0 array. I pick a value for 0,0, then I pick a value for 1,0 - but I need check it to make sure it's not equal to the value in 0,0 (easy to do). But then I pick a value for spot 2,0. Now that value can't be equal to the spot in 0,0 or the spot in 1,0.
If I check 0,0, and its true (the same) then I pick a value that's not the same. BUT it might be the same as spot 1,0. If I find that it is the same as spot 1,0, I can change it so that it isn't, but now it might be equal to the value in 0,0. That's why I want to check it at once.