I need a way to pick between two different arrays within a macro and then have the data that was picked to go through a path to determine if its the right thing. I am really bad at describing things sorry but here is the idea in general.
There are 10 different boleans in each of these get copys so i need to know if there is a way to determine with the single which move to be what ever one in the variable. Am I going to have to make another variable?
To achieve this, you can use a variable like a Boolean or Integer to determine which array to pick between two options. For example, if you have ArrayA and ArrayB, you can use a Boolean to choose which array to use. If the Boolean is true, it will pick ArrayA, and if it’s false, it will pick ArrayB. Alternatively, you can use an Integer (e.g., ArraySelector) to select between multiple arrays. Once the correct array is chosen, you can pass the selected data through a series of checks to determine if it matches the required condition. If you need more control over the selection logic, you could create another variable to handle specific conditions or paths within the arrays, ensuring the correct data is processed based on the selected path.