Hmm not sure what the prob is Hawkeye I did edit the download once so maybe try downloading again. There is a chance that the objects are quite large as I didnt scale them because I wasnt using them so try scaling down the object in dark basic.
Edit
Yeah the models are on the big side I can see them using this
sync on
backdrop on
color backdrop rgb(0,0,0)
autocam off
sync rate 0
set camera range 0.5, 300000
set ambient light 65
g_fSpeed# = 50.25
g_fTurn# = 0.3
load object "townhouses\house1.x",1
set object cull 1,1
set object transparency 1,0
position object 1,0,-2000,5000
set object light 1,1
set object filter 1,1
scale object 1,100,100,100
rotate object 1,0,0,0
position camera 0,0,0
do
gosub userInput
sync
loop
userInput:
control camera using arrowkeys 0, g_fSpeed#, g_fTurn#
OldCamAngleY# = CameraAngleY#
OldCamAngleX# = CameraAngleX#
CameraAngleY# = wrapvalue ( CameraAngleY# + mousemovex ( ) * 0.4 )
CameraAngleX# = wrapvalue ( CameraAngleX# + mousemovey ( ) * 0.4 )
yrotate camera curveangle ( CameraAngleY#, OldCamAngleY#, 24 )
xrotate camera curveangle ( CameraAngleX#, OldCamAngleX#, 24 )
if CameraAngleX# > 60 and CameraAngleX# > 0 and CameraAngleX# < 200
CameraAngleX# = 60
Else
if CameraAngleX# < 310 and CameraAngleX# < 360 and CameraAngleX# > 200
CameraAngleX# = 310
Endif
Endif
return
Let me know if you have any joy
Lead programmer ULIDIA
Belial Productions