There's something I can't get to work : 2d arrays.
How can you build two loops (one inside the other) to access (X,Y) cells in an array ?
In other languages, you can do something like that (complete pseudocode...) ;):
for i from 1 to 10
for j from 1 to 5
do something at(i,j)
How can you do the same with Construct 2 ? (Since there's only one loopindex when you use a 'For each' loop)