So I have an Array of Strings that is 3 Wide, 2 Deep, and 500 High.
I want to be able to get a String from a Specific Column then set a Variable to that String
Develop games in your browser. Powerful, performant & highly capable.
Set value to:
Array.At(0, random(Array.Height)) for 0 index column
Array.At(1, random(Array.Height)) for 1 index column
Array.At(2, random(Array.Height)) for 2 index column
Thank you! This worked perfectly. But how would I do the same for the Second Sheet of the Array?
Second array? If the name is Array2 you can just set it Array2.At(0, random(Array.Height)) for example.