Show differencesHistory of post edits
#ActualRulerOfNothing
Posted 15 October 2012 - 10:16 PM
number isn't reset. Is there any particular reason you declared number and number2 instead of using mapn and mapn2? Also, you should probably be using nested for loops for going through a 2D array, and "mapn < 5, mapn2 < 5" probably doesn't do what you think it does (the comma operator is simply equal to the second expression, so that code is equivalent to mapn2 < 5)
#2RulerOfNothing
Posted 15 October 2012 - 10:15 PM
number isn't reset. Is there any particular reason you declared number and number2 instead of using mapn and mapn2? Also, you should probably be using nested for loops for going through a 2D array, and "mapn < 5, mapn2 < 5" probably doesn't do what you think it does (the comma operator is simply equal to the first expression, so that code is equivalent to mapn < 5)
#1RulerOfNothing
Posted 15 October 2012 - 09:55 PM
number isn't reset. Is ther any particular reason you declared number and number2 instead of using mapn and mapn2?