💽Installation
Installation difficulty
🟠⚫⚫⚫⚫
Download the resource
Head to your cfx keymaster, in
Granted Assets
look for an asset calledsb-handlingtuning V2 Latest Release
and download it.
Install dependencies
Download and install ox_lib
Insallation guide: https://overextended.dev/ox_lib
Create inventory items
Add this to ox_inventory/data/items.lua
['car_mod_nitro_kit'] = {
label = 'Nitro Kit',
weight = 500,
close = true,
client = {},
},
['car_mod_nitro_tank'] = {
label = 'Nitro Refill Tank',
weight = 700,
close = true,
client = {},
},
['car_mod_diff_lsd'] = {
label = 'LSD Differential',
weight = 1000,
close = true,
client = {},
},
['car_mod_diff_welded'] = {
label = 'Welded Differential',
weight = 1000,
close = true,
client = {},
},
['car_mod_tires'] = {
label = 'Sport Tires',
weight = 1000,
close = true,
client = {},
server = {
-- Add server export if needed
},
},
['car_mod_stiff_arb'] = {
label = 'Stiff ARB',
weight = 1000,
close = true,
client = {},
},
['car_mod_ecu'] = {
label = 'ECU',
weight = 175,
close = true,
client = {},
},
['car_mod_lock_kit'] = {
label = 'Lock Kit',
weight = 800,
close = true,
client = {},
},
["tunertablet"] = {
label = "Tuner tablet",
weight = 1,
stack = true,
close = true,
},
["smalltunertablet"] = {
label = "Small tuner tablet",
weight = 1,
stack = true,
close = true,
},
Unzip the resource archive
Using 7zip or win rar unzip the archive you just downloaded.
Add the script to your server resources
folder
resources
folderLocate your server files and inside it find the
resources
folder;Copy and paste the
sb-handlingtuning
folder to it;Add the resource to your
server.cfg
by adding the following line:ensure sb-handlingtuning
;Restart the server...
The resource should identify your framework and create database tables. To make sure the automatic processes went through properly have a look at messages that come up on your server console.
Save default handling data
In game use command
/admin:cars
and save all vehicles data
Common issues
TODO
Last updated
Was this helpful?