i dont need more then 30 but for some reason i cant get more then 4,
here is my code:
hide mouse
rem create camera
make camera 1
position camera 1,0,10,5
pitch camera down 20
pitch camera down 1,20
rem create arena
make object box 3,20,1,1
make object box 4,20,1,1
position object 3,0,0,33
position object 4,0,0,15
color object 3,RGB(255,255,255)
color object 4,RGB(255,255,255)
color backdrop RGB(0,0,0)
color backdrop 1,RGB(0,0,0)
rem setup player 1
make object box 1,1,1,3
position object 1,9,0,23
color object 1,RGB(255,255,255)
automatic object collision 1,1.4,1
rem setup player 2
make object box 2,1,1,3
position object 2,-9,0,23
color object 2,RGB(255,255,255)
automatic object collision 2,1.4,1
rem control players
do
if upkey()=1 then move object 1,0.1
if downkey()=1 then move object 1,-0.1
if shiftkey()=1 then move object 2,0.1
if controlkey()=1 then move object 2,-0.1
loop
rem setup ball
make object box 5,1,1,1
position object 5,0,0,1
color object 5,RGB(255,255,255)