1. I have used div for around 2 years now, and I want to know If this is true: Is this community freindly? I have heard (by rumor) that this isnt the freindlyest forum about, and I dont know if this is true or not, though I suspect its false.
we have our ups and downs but its a healthy forum with good members.
2. I'm making a 3d game, and want to know what the code is for making a ball roll. I tried by using the help, but it didnt work. I also noticed the other bit of code for making a ball roll on the forums, but it looked EXTREAMLY complex (I'm not good at picking out bits of code )
Im no expert at physics so ill leave this tasy morsel for the higher math kids
3. I also want to make walls. I have one, but when I paste the code over, It says: object allready exists. I tried:
For x = 1 to 1
Make object cube x,100
Position object x,500,50,500
Scale object x,800,100,100
Set object collision to boxes x
texture object x,2
and that works once but when I paste it and change
Position object x,500,50,500
alas, no luck
I can answer this one
what your doing with the loop is to define a set amount of objects
1 to 1 is only one object so the loop isnt required.
1 to 10 would be ok for a for/next loop
For x = 1 to 10
Make object cube x,100
Position object x,500,50,500
Scale object x,800,100,100
Set object collision to boxes x
texture object x,2
next x