hmm, for some reason i get the error, Array Accessed out of bounds
i declare the array as
dim objects(100,7)=0
if objectT=1
load object "cube100.x",objectN
scale object objectN,sizeX,sizeY,sizeZ
position object objectN,objectX,objectY,objectZ
`saves the type of the object to the array
object(objectN,1)=objectT
`saves the xposition of the object to the array
object(objectN,2)=objectX
`saves the yposition of the object to the array
object(objectN,3)=objectY
`saves the zposition of the object to the array
object(objectN,4)=objectZ
`saves the weight of the object to the array
object(objectN,5)=objectWeight
`saves the velocity of the object to the array
object(objectN,6)=0
`saves the acceleration of the object to the array
object(objectN,7)=0
endif
Why are you reading this?