├── README.md ├── fxmanifest.lua └── handling.meta /README.md: -------------------------------------------------------------------------------- 1 | # Re-stream the `handling.meta` for all base game vehicles (FiveM) 2 | 3 | This is a drag-and-drop resource that will restream the `handling.meta` for all base game vehicles. 4 | 5 | All vehicles are entirely stock and taken from the base game (thanks OpenIV ❤️), except that I've added `` so that we can control cool new game features in real-time (such as differentials, manual transmissions and more). 6 | 7 | Contains all vehicles up to **3407** (mp2024_02/Agents of Sabotage). 8 | 9 | ## Installation 10 | 11 | 1. Drag the resource into your `resources` folder 12 | 2. Add `ensure fivem-base-vehicle-handling` to your `server.cfg` 13 | 3. Restart your server 14 | -------------------------------------------------------------------------------- /fxmanifest.lua: -------------------------------------------------------------------------------- 1 | fx_version "cerulean" 2 | game "gta5" 3 | 4 | description "Re-streamed base vehicles handling.meta" 5 | version "1.0.0" 6 | author "JG Scripts" 7 | 8 | file "handling.meta" 9 | data_file "HANDLING_FILE" "handling.meta" 10 | --------------------------------------------------------------------------------