Reply to Re: Formula Needed
If you don't have an account, just leave the password field blank.
Get the level's modulo of 2 by using math_mod. Like this:
int &whatever = math_mod(&level, 2);
if(&whatever == 1)
say("The number isn't even!", 1);
else
say("The number is even.", 1);






