Vehicle Max Speed / Gear Ratios

Hello,

I can't seem to get my Kenshin bike to go any faster than "100" in the editor, anything beyond that seemingly makes no difference. Is there a file that caps the top speed or is it hard coded?

Also I was playing with the gear ratios but getting really odd results, like my bike going backwards after accelerating forwards.Is there any relation between the transmission block and the engine block?

Can anyone give me a rundown of primarily what the gear ratio's do and the "diff_gear_ratio" does?

Code:
<Engine>
        <Torque>180</Torque>
        <Opt_RPM>10500</Opt_RPM>
        <Min_RPM>800</Min_RPM>
        <Max_RPM>11000</Max_RPM>
        <Min_RPM_Torque_Factor>0.8</Min_RPM_Torque_Factor>
        <Max_RPM_Torque_Factor>0.8</Max_RPM_Torque_Factor>
        <Min_RPM_Resistance>0.05</Min_RPM_Resistance>
        <Opt_RPM_Resistance>0.1</Opt_RPM_Resistance>
        <Max_RPM_Resistance>0.3</Max_RPM_Resistance>
        <Nitro_Capable>false</Nitro_Capable>
</Engine>

Code:
<Transmission>
        <Gear_Ratios>
          <Element>3.5</Element>
          <Element>2.2</Element>
          <Element>1.5</Element>
          <Element>1.1</Element>
        </Gear_Ratios>
        <Diff_Gear_Ratio>7.0</Diff_Gear_Ratio>
        <Reverse_Gear_Ratio>3.38</Reverse_Gear_Ratio>
        <Upshift_RPM>10000</Upshift_RPM>
        <Clutch_Delay>0.1</Clutch_Delay>
        <Clutch_Slip_RPM>1000</Clutch_Slip_RPM>
        <Maximum_RPM_Rate>15000</Maximum_RPM_Rate>
        <Downshift_RPMs>
          <Element>5000</Element>
          <Element>5250</Element>
          <Element>5500</Element>
        </Downshift_RPMs>
</Transmission>
 
Back
Top