lunzueta / GTAVManualTransmission

Manual transmission for GTA V

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

GTA V Manual Transmission

Build status GitHub total downloads

forthebadge

This is an ASI script allowing for manual control over the ingame gearbox. As a secondary function, this mod has full racing wheel support. Supported features are steering, the throttle, brake and throttle pedals, sequential shifting and using the H-shifter.

Discuss the mod over at GTAForums.com or GTA5-Mods.com.

Requirements

Downloads

Building

Requirements

Download the ScriptHookV SDK and extract its contents to ScriptHookV_SDK.

Clone this repository to the same folder ScriptHookV_SDK was extracted so you have ScriptHookV_SDK and GTAVManualTransmission in the same folder. If you get build errors about missing functions, update your natives.h. Check AppVeyor build logs for the natives.h I use.

Clone my GTAVMenuBase to the same folder you're gonna clone this to.

Mod support

NOTE: Starting with version v4.3.8, new decorators should be used. The old ones will be removed with the next minor version number bump!

You can read decorators to get some info about this mod.

Example: DECORATOR::DECOR_GET_INT(vehicle, "mt_shift_indicator"); gets the current shift up/down status. Currently this mod exposes 2 variables which can be used in other scripts.

Current gear: mt_gear

  • 0: Reverse
  • 1 through 7: Matching gear

Speedometers shift up/down indicator: mt_shift_indicator

  • 0 - Nothing
  • 1 - Shift up
  • 2 - Shift down

Speedometers Neutral gear: mt_neutral

  • 0 - In gear
  • 1 - Neutral

Please note that the neutral gear is fake - it's achieved by having the clutch disengaged fully.

Set shift mode: mt_set_shiftmode

  • 0 - No change
  • 1 - Sequential
  • 2 - H-pattern
  • 3 - Automatic

FiveM Update

From version 4.2.0 beta 3 onwards, FiveM is sort of supported! An update fixed some issues this mod had with FiveM. On top of that, beta 3 has more robust patching for GTA V's stability control.

FiveM 1.0.1103.2

FiveM updated to a recent GTA V build, so the problems that arised from using an old version are considered gone. From version v4.3.8 onwards, the decor setting should also work.

About

Manual transmission for GTA V

License:Mozilla Public License 2.0


Languages

Language:C++ 99.9%Language:Batchfile 0.1%