
Originally Posted by
Baked0420
I understood most of it, but I never used T2DArrays in SCAR, and yea, it looks very similiar to pascal. It's not really the basics of SCAR, that's just the compiler

I think you meant the basics of pascal.
I'm gonna look for a tut on T2DArrays now, see how they're used and what for.
T2DArrays are arrays of arrays of data type:
For example a T2DIntegerArray:
SCAR Code:
Var I : T2DIntArray;
Begin
I := [TIntegerArray([0, 1]), TIntegerArray([2, 3])];
WriteLn(I[0][1]);
End;
Then you have more common uses such as the ATPA (T2DPointArray)
.
Hope that cleared up some stuff.