theyaleon wrote: > if (ABcount == ABCountC) jump quitty
That's invalid syntax. If can be used as follows: (realize the importance of line separators below) ;------------------------- if ( expression ) command ;------------------------ OR if ( expression ) do command1 command2 ELSE command3 endif and ELSE above can be substituted with ELSEIF ( expression ) and repeated again on a separate line following some more commands. So your script should be ;------------------------ if (ABcount == ABCountC) quit ;------------------------ Review your script for possibly other occurrences of this invalid syntax. Good luck!
