No Luck here is my code:
Game.dba
done = 0
function Game.Init()
rem turn off autocam
autocam off
make camera 1
rem move the camera
position camera 1, 1, 0, 0
rem create the game surface
Surface.Init()
rem once the game is initalized, start the game loop
Game.GameLoop()
endfunction
rem Main Game Loop
function Game.GameLoop()
repeat
rem update the game objects states
Game.Logic()
until done = 1
endfunction
function Game.Logic()
rem Games Logic Routines Go Here
endfunction
Surface.dba
function Surface.Init()
rem make our game surface
Make Object Box 1, 7.5, 3.75, 0.1
position object 1, 0, -3.75, 0
xrotate object 1, 90
endfunction
Please help.