Hey,
So you're trying to create a 3d maze game in classic simular to the one in the codebase for Pro?
Well, sure it's doable

. You just have to program a lot with RND(). But (i geuss you already noticed) RND() isn't really random. So if you want a REAL random you have to use this:
randomize timer()
for a=1 to 100
a=rnd(99999999)
next a
You must use randomize timer() because you will seed the Random generator with "Timer()" and because Timer() never is the same, you will get REAL random

. Then you must throw away the first 100 random's because they aren't really random.
Then what you have to do is just randomize the path as you go. (otherwise the paths will go very.. very wrong. You just have to set an exist point which should be reached. then you just have to make you path as you go

.
Hope i've helped you enough.
The Dream Keeper!
(TEAM Dark Dreams)
Bring fun to life!!!!!