here's what i got so far:
ypos=0
for x = 1 to 13
for y = 1 to 13
read dat
next y
next x
for boxnum=1 to dat
make object cube 1000+boxnum,1
color object 1000+boxnum,rgb(rnd(255),rnd(255),rnd(255))
position object 1000+boxnum,0,boxnum,10
next boxnum
wait key
do
ax# = wrapvalue(ax#+mousemovey()) : ay# = wrapvalue(ay#+mousemovex())
rotate camera ax#, ay#, 0
if mouseclick() = 1 then move camera .5
if mouseclick() = 2 then move camera -.5
sync
loop
data 8,8,8,8,7,7,9,9,9,9,9,9,9
data 8,8,8,8,7,7,9,9,9,9,9,8,9
data 5,5,5,5,6,7,8,9,9,9,9,8,9
data 4,4,5,5,6,6,6,6,6,9,9,8,9
data 4,4,5,4,6,6,6,6,6,6,6,7,9
data 4,4,4,4,5,5,5,6,6,7,7,7,9
data 4,4,4,4,5,5,5,8,9,9,9,9,9
data 1,1,1,3,4,4,8,8,9,9,9,9,9
data 1,1,1,2,4,4,7,7,9,9,9,9,9
data 1,1,1,1,1,1,7,7,6,6,6,6,7
data 1,1,1,1,1,1,7,7,6,5,5,6,7
data 1,1,1,1,1,1,2,3,6,4,5,5,8
data 1,1,1,1,1,1,2,3,4,4,4,5,8
Now if I can just get it to make a column for every single digit in every single data line...any suggestions?