Uhm... I'm at a loss... I can't find it in the tutorial, so maybe it doesn't exist, but is there a function that can do something like this:
if (variable 1 is +5 or higher than variable 2)
I am a little bonkers when I wrote this, and thus I may have forgotten the tutorial answer.
Last edited on
if (x == 5 + y || x > 5 + y)
? I'm guessing, try it out.
Thanks LittleQuick, you made me think of it.
if (x > (y+5))
I think this is it, at least xD
Yours is completely right xD I'm just a little confused.