Link Boolean to array index?

i would use two arrays of the same length to store your information or use a struct. in the case of using two arrays you just need to make the indexes match so pic 1 in the actor array and in the bool array would both be index 0. if you use a struct then you could make them into one index in the same array that stores both the actor and the bool values.

below is a example of how you could accomplish this with two arrays.