Thanks Gil Galvanti. for that info. But now I have another problem.
Ive been using the codes below separately in two different projects and they both give me a error saying cant load image at any line
My image is 1024x768 in size
here's my complete code below
Rem Project: landtest1
Rem Created: 9/10/2007 4:48:25 PM
Rem Author:
Rem ***** Main Source File *****
rem Setting up display mode.
backdrop off : sync on : sync rate 300 : hide mouse
set display mode 1024,768,32
rem setting up camera.
make camera 1
position camera 1,0,0,30
set camera view 1,2,1,2,2
rem setting up light.
make light 1
position light 1,0,0,30
rotate light 1,0,0,90
set light to object position 1,1
rem load up terrain.
load mesh "land1.3ds",1
rem load up bitmap image
load bitmap "grass.bmp",32
rem **** Main Loop ****
do
sync
loop
end
Shay3000