Another question, the same capx file applies.
In the cardsDeal group. If I wanted to avoid the "dealing" of face cards, how should I do it?
I tried adding these conditions:
(RandomArray.At(cardsCounter) % 13)+1 != 11
(RandomArray.At(cardsCounter) % 13)+1 != 12
(RandomArray.At(cardsCounter) % 13)+1 != 13
On top of the loop but it doesn't work at all, it just stops as soon as the system finds a face value.
Also.. is it possible to test variable with || (OR) or %% (AND)?
Also, is possible to set/unset specific values at a specific index of the array?
For example I have a random array of 52, I already used the number 10 and I unset it, resulting in an array of 51 elements.
Thanks