well, I can see that the left_jab_count < 0 makes your for loop not work at all because when you initialize left_jab_count to 0 to begin with, you are saying 0 < 0, which is false making it not work.
Well I dont know how many times the loop should run I want it to be dynamic.......meaning that the if stetment might be meet on many occasions there fore I need left_jab_count variable to increment by one every time the condition is meet....And if i set the 0 in my loop condition to lets say 10 and if there is 11th or 12th occurrence nothing will happen...
If all we want to do is increment left_jab_count when the if statement returns true, why is the loop necessary at all? It doesn't appear to actually do anything. Why not just increment, and be done with it?