I was getting a little tired trying to learn how to model so I wrote a program to make an animated person out of nothing but boxes. feel free to use it.
+ Code Snippetsync on
r=-1
l=1
`torso
make object box 1,10,18,5
`legs
make object box 2,3,18,3
offset limb 2,0,0,-9,0
move object left 2,3
move object down 2,9
make object box 3,3,18,3
offset limb 3,0,0,-9,0
move object left 3,-3
move object down 3,9
`arms
make object box 4,3,18,3
offset limb 4,0,0,-9,0
move object left 4,6
move object down 4,-9
make object box 5,3,18,3
offset limb 5,0,0,-9,0
move object left 5,-6
move object down 5,-9
`head
make object cube 6,6
move object up 6,12
GLUE OBJECT TO LIMB 2,1,0
GLUE OBJECT TO LIMB 3,1,0
GLUE OBJECT TO LIMB 4,1,0
GLUE OBJECT TO LIMB 5,1,0
GLUE OBJECT TO LIMB 6,1,0
do
xrotate object 2,object angle x(2)+l
xrotate object 3,object angle x(3)+r
xrotate object 4,object angle x(4)+r
xrotate object 5,object angle x(5)+l
yrotate object 6,object angle y(6)+1
if rval=30 or rval=-30 then r=-r
if lval=30 or lval=-30 then l=-l
rval=rval+r
lval=lval+l
if spacekey()=1 then move object 1,1
control camera using arrowkeys 0,5,3
sync
loop