Editing D Ogre's code:
` Turn video SYNC ON and set FPS
sync on
sync rate 0
` Turn off auto camera and backdrop
autocam off
` Splash Loading Screen
cls
sync
center text 320,240,"Loading..."
sync
` Simulate loading objects
for i=1 to 10
make object sphere i,5.0
wait 1000
next i
` Do whatever (Game Menu?)
cls
sync
center text 320,240,"Done. Press any key to end."
sync
` Wait for a key and then exit program
suspend for key
end
Does that one work? I'm not so sure that hiding every object is the best way to do it...
Edit: WAIT NEVERMIND... THIS IS DB NOT DBPRO THAT WON'T WORK