Ok i need help this keeps happening when I load two textures it just says that it doesnt exist.
Print "My first Project"
wait 1000
Make Matrix 1,10,10,10,10
Randomize Matrix 1,1
Make Object Cube 1,5
position object 1,5,2.5,5
Load Image "dark02.bmp",1
Load Image "rock23.bmp",2
Prepare Matrix Texture 1,2,10,10
Texture Object 1,1
sync on
Do
yrotate object 1,wrapvalue(object angle y(1)+1)
if upkey()=1 then move camera .1
if downkey()=1 then move camera -.1
if leftkey()=1 then yrotate camera wrapvalue(camera angle y()-1)
if rightkey()=1 then yrotate camera wrapvalue(camera angle y()+1)
sync
Loop