Quote: "edit: I just tested it out and the highest object number I can use is 22,000,000"
Come again? I thought the limit was 2^16 (65536) ?
You will never reach the limit, so don't worry about it. To make DBP more object orientated, you can always use a function to search for a new object. For example, a cube:
function NewCube(Size)
rem local variables
local t as integer
rem search for a free object
for t=1 to 65536
if object exist(t)=0 then exit
next t
rem create the cube
make object cube t,Size
endfunction t
Then all you do is call this to make a new cube with the size 10:
TheComet