how doo i make shadows..... it is realllyyy reallllyyy needed in my game.... and i can't figure it out...... help plz.... here is my LEVEL 1 code allready....
`LEVEL 1
_level1:
`the floor
make object box 100,1000,10,1000
position object 100,0,-20,0
color object 100,rgb((0),(255),(255))
make object collision box 100,-500,-5,-500,500,5,500,0
make object box 500,20,5,20
position object 500,-80,0,120
color object 500,rgb(rnd(255),rnd(255),rnd(255))
make object collision box 500,-10,-2.5,-10,10,2.5,10,0
make object box 501,20,5,20
position object 501,-80,5,160
color object 501,rgb(rnd(255),rnd(255),rnd(255))
make object collision box 501,-10,-2.5,-10,10,2.5,10,0
make object box 502,20,5,20
position object 502,-80,10,200
color object 502,rgb(rnd(255),rnd(255),rnd(255))
make object collision box 502,-10,-2.5,-10,10,2.5,10,0
`and walls around the scene
for t=0 to 1
make object box t+512,10,50000,500
position object t+512,-200+t*400,5,220
color object t+512,rgb((0),(255),(0))
make object collision box t+512,-5,-20,-250,5,20,250,0
make object box t+514,400,50000,10
position object t+514,0,5,-30+t*500
color object t+514,rgb((0),(255),(0))
make object collision box t+514,-200,-20,-5,200,20,5,0
next t
return
THANKS FOR STOPING AT A RED LIGHT... AND LETTING ME CRASH INTO YOU AT 80 MILES AN HOUR!!!