th_rcs[0] = CreateThruster (_V( 1,0, 1), _V(0,0,1),MAXRCSTH, TANK, ISP);
//left front tread
th_rcs[1] = CreateThruster (_V(-1,0, 1), _V(0,0,1), MAXRCSTH, TANK, ISP);
// right front tread
th_rcs[2] = CreateThruster (_V( 1,0,-1), _V(0,0,-1), MAXRCSTH, TANK, ISP);
//left rear tread
th_rcs[3] = CreateThruster (_V(-1,0,-1), _V(0,0,-1), MAXRCSTH, TANK, ISP);
// right rear tread
th_group[0] = th_rcs[0];
th_group[1] = th_rcs[3];
CreateThrusterGroup (th_group, 2, THGROUP_ATT_YAWLEFT);
th_group[0] = th_rcs[1];
th_group[1] = th_rcs[2];
CreateThrusterGroup (th_group, 2, THGROUP_ATT_YAWRIGHT);
...
i3 = GetControlSurfaceLevel(AIRCTRL_RUDDER);
if (i3==1){SetThrusterLevel(th_main,0);
SetThrusterLevel(th_retro,0);
TURN_proc=.125;}
if (i3==-1){SetThrusterLevel(th_main,0);
SetThrusterLevel(th_retro,0);
TURN_proc=.875;}