@Help Me Please168
Something randomly could be this quick example made with a matrix and some boxes...
autocam off
sync on
make matrix 1,100,100,4,4
randomize matrix 1,20
update matrix 1
for i= 1 to 20
for a= 1 to 20
inc ob
make object box ob,5,5,5:offset limb ob,0,0,2.5,0
y= get ground height(1,i*5,a*5)
position object ob,i*5,y,a*5
color object ob,rgb(y*10,y*10,0)
next a
next i
position camera -50,60,-50
point camera 0,0,0
do
control camera using arrowkeys 0,0.1,0.1
a#=wrapvalue(a#+mousemovex()/2)
cam#=wrapvalue(cam#+mousemovey()/2)
rotate camera cam#,a#,0
if leftkey() then move camera left 0.1
if rightkey() then move camera right 0.1
sync
loop
I'm not a grumpy grandpa