This will create an ingame screen. It's coded in DBC (where we cannot create multiple camera's)
autocam off
sync on : sync rate 80
`make a quick texture
ink rgb(0,0,100),0
box 0,0,100,100
for i = 1 to 50
ink rgb(rnd(255),rnd(255),rnd(255)),0
dot rnd(100),rnd(100)
next i
get image 2,0,0,100,100
backdrop on
texture backdrop 2
`make second screen
make object plain 1,8,6
`make other objects
make object cube 2,1
make object cube 3,2
make object cube 4,2
position object 1,0,3,0
position object 2,10,0.5,3
position object 3,-10,0.5,4
position object 4,5,0.5,-2
do
`get screen image and texture the second screen with it
get image 1,0,0,screen width(),screen height()
texture object 1,1
`controls
if leftkey() = 1 then turn camera left 2
if rightkey() = 1 then turn camera right 2
if upkey() = 1 then move camera 1
if downkey() = 1 then move camera -1
sync
loop
Immunity and Annihalation makes Immunihalation...