well im not sure what your desired effect is, but it does seem like you need to put the "#" at the end of your variables throught the code, you only have it there when u first declare them (i.e.: change "boxcreate" to "boxcreate#"). try putting those in and see if that gives you what you want.
dunno what effect ur going for, but having that do loop in there is gonna create an infinitely long line of boxes heading to the right on the x-axis, and the boxes are partially inside one another so it looks like a 3d line getting longer and longer..
in any case here's your code the with the "#"s:
make camera 1
position camera 1, 0,4,-4
point camera 1, 0,0,0
SYNC ON
SYNC RATE 60
boxcreate#=0.0
movevar#=0.0
make object box 3, .5,.5,.5
position object 3, 0, 2, 0
DO
while boxcreate#<=5.0
inc boxcreate#,1
inc movevar#,.5
make object box (boxcreate#+100) ,1,1,1
position object (boxcreate#+100),(-.5+movevar#),-.5,.5
SYNC
endwhile
LOOP
I threw in a camera to get a better view, just take it out if u don't need it.
well hoped i helped. later
DBPro User
PC: WinXP, AthlonXP 2100+ 1.7ghz, 80gb HD, Nvidia GeForce FX 5200 (128mb onboard RAM), 512mb DDR400 system RAM. Thank you for your help.