Squirrel Bracket Documentation
TebexDiscord
Handling Tablet V2
Handling Tablet V2
  • 📃Introduction
  • 💽Installation
  • ✏️Configuration
  • ⚙️API
  • ❓Common Issues / FAQ
  • 📰Changelog
Powered by GitBook
On this page
  • I do not use any framework, will handling system work on my server?
  • I change handling values, but they make no effect, when I reload tablet they get back to default
  • Fix permissions for qbcore server.

Was this helpful?

Common Issues / FAQ

PreviousAPINextChangelog

Last updated 3 months ago

Was this helpful?

I do not use any framework, will handling system work on my server?

Yes, the system has build in options to work without any framework. To make it work you would need to set Config.Framework and Config.NotificationSystem to 'custom'. Find more in

I change handling values, but they make no effect, when I reload tablet they get back to default

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 resources that are using SetVehicleHandlingField, SetVehicleHandlingFloat, SetVehicleHandlingInt or SetVehicleHandlingVector like 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.

Also you can utilize our and change the handling native functions to use functions provided by sb-handlingtuning system.

Fix permissions for qbcore server.

For QbCore we are using QBCore.Functions.HasPermission and it checks if player has . Make sure in your server.cfg you are using qbcore groups (e.g qbcore.admin)

# If using group.admin:
add_principal identifier.fivem:<REPLACE_ME> group.admin

# Add qbcore.admin:
add_principal identifier.fivem:<REPLACE_ME> qbcore.admin

Alternatively you can alter sb-handlingtuning/configs/server_config.lua > getPlayerPermissions function or add player permissions using identifier for example:

Config.Permissions = {
    { type = 'frameworkgroup', value = 'god',        permissions = FULL_PERMS },
    { type = 'frameworkgroup', value = 'superadmin', permissions = FULL_PERMS },
    { type = 'frameworkgroup', value = 'admin',      permissions = FULL_PERMS },
    -- ADD THIS:
    {type = 'identifier', value = 'fivem:<REPLACE_ME>', permissions = FULL_PERMIS},
    -- {type = 'ace', value = 'handlingtuning', permissions = {}},
}
❓
API
qbcore group
Configuration