Ok before i meant to say the ink command not dot command. I have tried
evrey command variation I can think of. Here are some of my changes that I tried but still wont change the stars white.
I tried
Set Display Mode 800,600,32
Sync On: Sync Rate 0: CLS 0
AutoCam Off
Set Camera Range 1.0,300000.0
Hide Mouse
Gosub MakeSpaceSphere
Do
CX#=CAMERA ANGLE X(): CY#=CAMERA ANGLE Y(): CZ#=CAMERA ANGLE Z()
CX#=Wrapvalue(CX#+mousemovey())
CY#=Wrapvalue(CY#+mousemovex())
Rotate Camera CX#,CY#,CZ#
Sync
Loop
MakeSpaceSphere:
Create Bitmap 1,1024,768
CLS 0
For N=1 To 2000
Ink RGB(Rnd(200)+55,Rnd(100)+10,Rnd(100)+155),0
Dot Rnd(512),Rnd(512)
Next N
For N=1 To 2000
C=Rnd(200)+55
Ink RGB(255,255,255),0
Dot Rnd(512),Rnd(512)
Next N
Get Image 1,0,0,512,512: Rem <<< Add ,1 on the end when running in DBPro
Make Object Sphere 1,1000
Scale Object 1,10000,10000,10000
Texture Object 1,1
Rem SET OBJECT Object Number, Wireframe, Transparency, Cull
Set Object 1,1,1,0
Set Current Bitmap 0
Delete Bitmap 1
Return
I tried it the way it was originally but with the backdrop and color set to black like you said LBFN but it was just a black screen I got.
I also tried changing this little part to
For N=1 To 2000
Ink RGB(Rnd(255)+55,Rnd(255)+10,Rnd(255)+155),0
Dot Rnd(512),Rnd(512)
but it still would not work. This is just driving me crazy!!
Oh and I also tried setting the transparency to 1 but it just looked like little black streaks in dpp.
gm07