Hi
I´ve just made this little.... thing...
It looks kinda crazy, but check it out
REM Project: Chocolate Cake
REM Created: 15-01-2005 20:20:19
REM
REM ***** Main Source File *****
REM
Rem frame settings
wait 200
sync on
sync rate 125
REM make the cube
make object sphere 1,5
color object 1,RGB(255,0,222)
REM color the backdrop
color backdrop RGB(0,0,0)
REm make spheres as planets
make object sphere 2,1
color object 2,RGB(6,255,0)
make object sphere 3,2
color object 3,RGB(0,246,255)
make object sphere 4,3
color object 4,RGB(98,55,55)
make object sphere 5,1
color object 5,RGB(18,0,255)
REM the player variables
x#=0
y#=0
z#=0
REM place the spheres
position object 2,x2,y2,z2+10
position object 3,x2,y2+10,z2
position object 4,x2,y2-10,z2
position object 5,x2,y2,z2-10
REM set the camera
position camera x#,y#+5,z#-30
start:
rem The spheres variables
x2=0
y2=1
z2=8
lightspeed#=0.5
REM the important variable ;-)
thing=0
REM main loop
do
position object 1,x#,y#,z#
point object 2,x#,y#,z#
point object 3, x#,y#+5,z#
point object 4,x#,y#-5,z#
point object 5,x#,y#,z#
move object 2,0.01
move object right 2,lightspeed#
move object 3,0.01
move object right 3,lightspeed#
move object 4,0.01
move object left 4, lightspeed#
move object 5,0.01
move object left 5,lightspeed#
turn object left 1,1
if thing>450
turn object right 1,2
inc pis
endif
if thing>1000
gosub start
endif
inc pis
sync
loop