hey new banner, looks good too. I haven't tried it yet but will let you know.
I'm playing with some other stuff right now and running on no sleep.
Graphics3D 640,480
; create a type to hold all the sparks used for the path
Type path
Field x,y,spark
End Type
; bring in my maze routine (full version available at my web site)
Include "mazelib.bb"
; maze width and height
Global mwidth=10
Global mheight=10
map=CreateImage(mwidth*16,mheight*16)
; initialise the maze library
maze_startup("mazeblocks.png",16,16)
; generate a new maze
m.maze = maze_create(mwidth,mheight,MilliSecs(),0)
; and generate a solution for it
maze_solve(m,0,mheight-1,mwidth-1,0)
;create cloud planes (ripped straight out of Marks examples)
tex=LoadTexture( "cloud_2.bmp",3 )
ScaleTexture tex,100,100
p=CreatePlane()
EntityTexture p,tex
EntityFX p,1
PositionEntity p,0,8,0
p=CopyEntity( p )
RotateEntity p,0,0,180