is it possible to check a variable odd or even ?
I guess this should work:
system compare two values : variable%2 = 0
Develop games in your browser. Powerful, performant & highly capable.
Or you can bitwise and with 1 which extracts the 2^0 bit from a number. You sometimes have to be careful with modular arithmetic as negative numbers can be odd.