Hi folks, I`me new to appgamekit I`ve been looking through a few things, I used to program in basic back in the 80`s but there is something I need to do, but can`t find it or work it out.
I`m trying to get some data in to arrays but just can`t do it, in the old basic this is what I want to do:-
dim move (10,3)
for a= 1 to 10
for b=0 to 3
read move(a,b)
next b
next a
data 2,5,7,8,3,9,6,2,7,9,2,45,6,9,3 etc.
where move(1,0) would be 2 , move(1,1) would be 5 , move(1,2) = 7, move 1,3 = 8 move(2,3) = 2 , move(2,1) = 9
I also need 1D string array , bu that would just be reading strings in the same method as above but just one loop i presume
any help would be greatly appreciated.
cheers