Hi All
I am haveing a Problem with trying to use the model from the TGC Store. Is there somthing that has to be done to it befor it can be used? I got the old Church and trying to put it on a terrain. When I try to load it it gevis be a error of file not found. I look for miss spelling. I even started a new project and downloaded it again. I still get the same thing. You can use a x file from the store in DBP.
DennisW
Rem Project: My_World
Rem Created: Friday, January 09, 2009
Rem ***** Main Source File *****
`Make a terrain for My_World
LOAD OBJECT "media\my_gi_terrain.x",1
LOAD image "media\my_gi_terrain.jpg",1
TEXTURE OBJECT 1,1
`Position Camera for start (Camera0),(Position X 55),(Position Y 3),(Position Z 1)
POSITION CAMERA 0,55,3,1
`Load Church for Terrain
LOAD OBJECT "Church\old_church2(1).x",2
LOAD IMAGE "Church\old_church2(1).bmp",2
TEXTURE OBJECT 2,2
POSITION OBJECT 2,55,3,100
Do
`These two lines of code control Plr and or Camera to top of Terrain
cx#=camera position x() : cz#=camera position z()
position camera cx#,1010-intersect object(1,cx#,1000,cz#,cx#,-1000,cz#),cz#
` Control Camera using arrowkeys + speed of Camera (Camera 0),(up or down keys Speed .1),(Left or Right Speed .1)
CONTROL CAMERA USING ARROWKEYS 0,.1,.1
loop