Captain Spazer #1 Posted January 15 I'm trying to figure out how to do a calculation that checks if player0x = player1x at like, 20 and then continues checking for as long player0x is at 20 or closer to player1x, any ideas? Something like: if player0x = player1x && player0x >=20 Quote Share this post Link to post Share on other sites
+Random Terrain #2 Posted January 15 This is the first thing that pops into my head: If player0x > player1x then temp5 = player0x - player1x : goto __Skip_20_Check temp5 = player1x - player0x __Skip_20_Check If temp5 < 21 then DO SOMETHING 1 Quote Share this post Link to post Share on other sites
Captain Spazer #3 Posted January 16 Thanks! 1 Quote Share this post Link to post Share on other sites
ScumSoft #4 Posted January 19 I find it helps to verbally think out the problems. "If the player0x is greater than 20 then I need to start checking if player0x is equal to player1x" Leads to a super simple solution: if player0x >= 20 then if player0x = player1x then it wont run the "then if", unless player0x >= 20 did I understand your problem correctly? 1 Quote Share this post Link to post Share on other sites
Captain Spazer #5 Posted January 20 Simple and elegant! Thank you. Yes, I think you understood it correctly 😃 Quote Share this post Link to post Share on other sites