Page
Was this helpful?
Was this helpful?
This is a multipurpose handling system that will allow you to do the finest adjustments on vehicles parameters with an easy to use user interface, developer tool and advanced Drift Mode. The system will suit any type of server, no matter if it is a roleplay (where it could be used as a tuning tablet), freeroam, drift or racing where it could serve as a utility for players to freely adjust their cars or just as a developer tool with a feature that generates an XML code to just copy and drop into your server files.
For a roleplay server it can open variety of new scenarios, making each individual vehicle feel unique. You want Ford Mustang be stable on the road. With good skills you will be able to achieve it. You want it to be as drift car? Do it!
With our unique and advanced Drift System, you can make any upgraded car slide sideways easily. On top of that each player can configure the drift mode that suits them.
Installation difficulty
🟠⚫⚫⚫⚫
Unzip the resource archive;
Add the script to your resources
folder;
Add db_qbcore.sql
or db_esx.sql
(depending on your framework) to your database, or do not add any sql, but in such case make sure to set Config.UseDatabaseHandlingSaving
and Config.UseDatabasePresetsSaving to false
;
Add the resource to your server start file (server.cfg
) by writing ensure sb-handlingtuning
. Make sure it is started after any dependencies you will be using.
Adjust files found in the /configs
folder to fit your server.
Make sure to go through all options in /configs/config.lua
and read the commented code to adjust the config to fit your server.
Most important settings are under the Framework
section.
This step is not necessary but highly recommended and it only needs to be done once.
After the resource is started join the game;
Make sure you have admin permissions for the resource;
Make sure you have added all your addon vehicles to Config.AddonVehicles
table in the configs/config.lua
file before doing next step;
Use command /fetchstandard
in client side and wait until all vehicles are loaded (you will see an amount of them increasing);
If you will not do this, the script might set incorrect values to vehicles and show incorrect values in the tabled UI.
If you will not add all your addon vehicles models to Config.AddonVehicles
script will try to do that automatically when car is spawned, but it might aswell corrupt the data.
You can use the handling tuning system with full access using a chat command /tablet
. For players to have access to the command you need to give access using any of Config.Admins
permissions. This will allow players to access all the features of the system including:
All handling parameters to be adjusted without any limit (in the range set in config.js
);
Change parameters in all groups on any vehicle, without needing to upgrade the vehicle first;
Access Drift mode on any vehicle;
Ability to generate and copy XML file of vehicle's handling;
Access to either Minimal or Tablet UIs;
Adjust owned vehicles and have their values saved to database.
Recommended for RP servers. You can allow players to use an inventory item to access the Tablet UI and adjust their vehicles in a limited range, which depends on original vehicle handling. This method will allow players to access their, or others vehicles to their liking and will include:
A limited parameters range (limits can be set in config.js
);
Access to Drift mode if vehicle meets upgrades requirements;
Access to all handling groups if vehicle meets upgrades requirements;
Access to either Minimal or Tablet UIs;
Adjust owned vehicles and have their values saved to database.
API exports functions and events (client side):
Opens tablet or minimal UI.
Paremeters:
fullAccess
- boolean(true/false)
Full access will allow player to generate XML code of the handling, adjust the values without any limits. See more in https://github.com/daZepelin/sb-handlingtuning/blob/gitbook/docs/handling-tuning.md#how-to-use
Sets Drift Mode either enabled or disabled.
Parameters:
toggle
- boolean(true/false)
Enable disable the drift mode of a vehicle player is currently sitting in.
Use instead of natives for vehicle handling (SetVehicleHandlingField, SetVehicleHandlingFloat, SetVehicleHandlingInt, SetVehicleHandlingVector). If you have any script that uses these natives replace them with this export.
Parameters:
key
- string
vehicle handling field (e.g nInitialDriveGears
, fInitialDriveForce
);
value
- number
value for field to set;
vehicle
- vehicle handler (optional, default vehicle player is in).
Example to replace in other script:
Resets handling to standard vehicle values.
SetFrontCamber(vehicle, value) / SetRearCamber(vehicle, value)
Sets vehicle front / rear camber for stance.
SetFrontWheelOffset(vehicle, value) / SetRearWheelsOffset(vehicle, value)
Sets vehicle front / rear wheels offset for stance.
You probably are using tablet with limited access. In Config.Groups
you can set that for example Engine
group would require engine level 4 upgrade installed on the vehicle. So you either want to install all the upgrades or open tablet using /tablet
command. See more information in https://github.com/daZepelin/sb-handlingtuning/blob/gitbook/docs/handling-tuning.md#how-to-use
Yes, the system has build in options to work without any framework and any other scripts. To make it work you would need to set Config.Framework
and Config.NotificationSystem
to 'custom'
. The framework implementation only allows owned vehicles to save their handlings.
This most likely happens because you have some other script that changes handling values and interrupts sb-handlingtuning functionality. Make sure you do not have any other handling editors, tuning tablets or engine swap scripts installed in your server.
Mostly often it is qb-vehiclefailure
or fivem-realisticvehicle
resources that affect braking force.
Fixed some of database issues and loading on esx and mysql-async scritpts;
Fixed pressing E and Q fading in the minimal UI even if the tablet UI is on;
Fixed some UI errors.
Fixes on key presses causing UI errors;
Created and added more errors handlers for easier debugging;
Fixed some sql queries to work with older mysql-async versions;
Fixed issue that caused break on saving presets and generating xml files;
Adjusted the way standard vehicles are being loaded. Now it might take longer, but will more likely not break and get stuck.
Added API export functions. How to use them you can find in https://github.com/daZepelin/sb-handlingtuning/blob/gitbook/docs/handling-tuning.md#api;
Fixed some issues with server callbacks.
Changed json to longtext in sql queries, as for some db versions it was causing issues;
Fixed issue where drift mode values were resetting when not intended;
Added missing handling fields, that had their groups missing;
Drift group values were saving some not needed values to standard values;
Added tablet command name config;
Added api for setting handling values, now the system will be easier to implement to other of your systems.
v1.0.3
Added wheels stancer tuning to the tablet. You can adjust wheels base width and camber. For now this is only synced with players inside the car. Also created api for that;
Added drifting heat. If drift mode is on this will reduce the tires grip after drifting and will gradually get back to normal grip if not drifting anymore. This should help initiate next slide after being in drift;
Fixed tablet icons and property description element;
Fixed some issues with drift mode, which was not activating in some cases.
If you have any difficulties with resource installation you could ask for our services on our by creating a ticket.
Download the resource from ;