sobe
18th February 2010, 04:31 AM
Below is the toe brakes script for Il2 that someone wrote and I want to use. However, I don't understand the second part and what it does (everything starting with the <128). Also, I would like the toe brakes not to kick in until they are pressed about half way down as otherwise they are too sensitive when I press the rudder.
Finally, what are the settings for the toe brakes in CM Device 4 and in CMS controls A4
F ([JS4.A1 > JS4.A2]) then //*******LEFT OR RIGHT TOE BRAKES SCRIPT****
CMS.A4 = JS4.A1;
ELSE
CMS.A4 = JS4.A2;
ENDIF
if ([ js4.a1 < 128]) then
cms.a4 = 0;
else
cms.a4 = ( js4.a1 - 128 ) * 2;
endIf
:confused:
Finally, what are the settings for the toe brakes in CM Device 4 and in CMS controls A4
F ([JS4.A1 > JS4.A2]) then //*******LEFT OR RIGHT TOE BRAKES SCRIPT****
CMS.A4 = JS4.A1;
ELSE
CMS.A4 = JS4.A2;
ENDIF
if ([ js4.a1 < 128]) then
cms.a4 = 0;
else
cms.a4 = ( js4.a1 - 128 ) * 2;
endIf
:confused: