Posted: 12th Oct 2003 18:51
It works in Dark Basic Pro. It is a line with alot of shadow that unfolds in a cool way. And it is neat. It has this cooL Shadowed Green effect with plenty of light and shadow to even it out. Well I made it for fun. I hope other people will enjoy it. At the moment of writing this. I cant remember if it works in Dark Basic Classic. But It is pretty cooL overall.
Posted: 15th Oct 2003 3:22
Yes it works in DBC if you make the code look like this:
+ Code Snippet
sync on
sync rate 40
autocam off
backdrop on
color backdrop 0
fog on
MAKE LIGHT 1800
MAKE LIGHT 2800
MAKE LIGHT 3800
SET AMBIENT LIGHT 100

`change these to make different effects
something = 255
red = 255
green = 255
blue = 255
blur = 0

create bitmap 1,128,128
for i=1 to 1000
ink rgb(rnd(red),rnd(green),rnd(blue)),0
dot rnd(300),rnd(300)

next i
if blur>0 then blur bitmap 1,blur
get image 1,0,0,128,128
delete bitmap 1

for i=1 to 10
make object plain i,900,900
xrotate object i,100
fix object pivot i
position object i,4,i,4
ghost object on i
texture object i,1
next i

position camera -.555,0,-.500
point camera 0,0,0
o=1
do

for o=1 to 10
yrotate object o,wrapvalue(sin(i-o)*something)
next o

for o=1 to 10
xrotate object o,wrapvalue(sin(i-o)*something)
next o

for o=1 to 10
zrotate object o,wrapvalue(sin(i-o)*something)
next o

i=wrapvalue(i+3)

sync

loop


see it wasn't that much stuff to change .... but what is it
Posted: 15th Oct 2003 5:08
Thanks for helping out The Dark Padawan. I appeciate it very much. Not to sure what it is exactly. heheh Thats so cooL that it works in dbc & dbp.
It is just a thing I made. heheh
Posted: 15th Oct 2003 8:01
hey, thats kinda neat, when you can catch the image anyway. What made you come up with that?
Posted: 15th Oct 2003 10:37
Well Phaelax that is a good question indeed it is. Well I was just playing around messing with another person's code. And just modified it for about ow not to sure how long really 8 to 13 hour's I guess. Still new to the programming language. So I was messing around and kept at it. Because I was trying to archive some cool results with this Phaze Shifter code that I made. And then I lost it from a certain point. So I saved a earlier version of the Phaze Shifter code. And when I was messing with it and the original code. I made this while looking for that and having a lot of fun. So I reversed a Galaxy of Color's. And I got that with a lot of added thing's. That I coded into the source code. It just kind of evolved from my inexperience and modifying.