Array index overflow means that you somewhere exceed the size of an array variable. For example if you have an array called Units[] with a size of 10, and you try to set Units[27] to a value, it will give an error, because the array is not big enough.
In short, you probably need to increase the size of some array you are using or check your trigger for flaws that could cause the array to exceed it's size.
Array index overflow means that you somewhere exceed the size of an array variable. For example if you have an array called Units[] with a size of 10, and you try to set Units[27] to a value, it will give an error, because the array is not big enough.
In short, you probably need to increase the size of some array you are using or check your trigger for flaws that could cause the array to exceed it's size.