in reply to Use of Uninitialized Value- Multiple Errors

The most likely case is that
$breakpoint{$chr}{$i}
is undefined at the time you are getting those messages.

The way I would debug that is to use the perl debugger:
perl -d <your-script>
and add a "conditional breakpoint" at that line:

b 132 !defined($breakpoint{$chr}{$i})
once the debugger is stopped , you can examine("x") the values in $chr, $i etc, and analyze why they are not what you expect.

                "It's ten o'clock... Do you know where your AI programs are?"