Is it possible to save an array without the dialog box popping up? I've tried 'FALSE' but that did not work. Asking because there's a lot of data to save and having to click through each box would get annoying...
I thought I read it in the guide but I could be wrong. I've already changed it to one array for the demo and we'll see how one works for the full game.
Oh, there is a limit to how many Dimensions can be created.
Dimensions are things like
ARR[1,2] <-- 2 dimensional
ARR[64,15] <-- also 2 dimensional
ARR[1] <-- 1 dimensional (default)
ARR[12,245,100] <-- 3 dimensional
it's just another way to organize your arrays, and isn't used very often above 3 dimensions.