Page 1 of 1

Snake 2007 II DEMO!

PostPosted: Fri May 25, 2007 6:17 am
by Sgt. Sparky
UPDATED!!! :D


Here is Snake 2007 II. :D
(well a demo)
I added quite a few effects to it,
I will just tell you that you use the arrow keys to move and try and collect the silver balls. :D
old picture:
Image
New Picture:
Image
:D
(there are no outer walls but you can warp around!)

To Render the BackGround you see(golden)
use this code on the create actor event of your canvas actor,
Code: Select all
float X, Y, SHADE;
for(X = 0; X < 36000; X++)
{
    moveto(width / 2, height / 2);

   SHADE = cos(X)*255;
    setpen(SHADE, SHADE / 1.1, 0, 0, 1);
    lineto(sin(Y) * width, cos(X) * width);
    Y += .01;
}

:D

PostPosted: Fri May 25, 2007 6:26 pm
by dj01e
great game man keep working :) -

PostPosted: Fri May 25, 2007 8:37 pm
by Sgt. Sparky
:D
I will post the new update soon with faster moving better rendering and more! :D

PostPosted: Sat May 26, 2007 4:32 am
by Sgt. Sparky
Updated again! :D

Re: Snake 2007 II DEMO!

PostPosted: Fri Nov 11, 2011 1:02 am
by 247wkman
path finding ques is looks great- like if you wanted an enemy to seek you out it kinda shows how it would go about it, so this game could play itself.