FAQ
Below you’ll find answers to the most frequently asked questions related to setup, usage, and integration. We recommend checking this section before opening a support ticket.
What is a locator?
The locator in our tuning is mainly aimed at users who also have vms_garagesV2.
With this, when your vehicle has been abandoned, you as the owner of the vehicle can go to Impound and locate your vehicle if it has one installed, otherwise this will not be possible.
Nevertheless, we have provided exports in section Usable Informations that will enable you or your developer to use this in your scripts.
Can I use an external society system? If yes, what should I do?
Yes, configure these settings:
Config.UseBuildInCompanyBalance = true
Config.RemoveBalanceFromMenu = true
Check config.server.lua
under SV.getSocietyMoney
for supported scripts. For unsupported scripts, manually update SV.getSocietyMoney
, SV.addSocietyMoney
, and SV.removeSocietyMoney
.
Can I make the tuning shop open for everyone or restrict it to a job?
Yes, adjust Config.TuningPoints
in config.lua
.
For public access, comment out the job restrictions.
For job-restricted access, uncomment the relevant section.
-- jobGradesToSet = {
-- {grade = 'recruit', label = 'Recruit'},
-- {grade = 'employee', label = 'Employee'},
-- {grade = 'manager', label = 'Manager', needToBeManager = true},
-- {grade = 'boss', label = 'Boss', needToBeBoss = true},
-- },
-- client_can_select_tuning = false,
-- send_bill_to_player = false,
-- job = 'mechanic', -- not required if you want to use this public.
-- grades_access = {'tuning'},
-- manager_grades = 'manager', -- string: 'name', table: {'name', 'name2'}
-- boss_grades = 'boss', -- string: 'name', table: {'name', 'name2'}
-- cityhall_grades = { -- Grades for sections from vms_cityhall
-- ['resumes'] = {'manager', 'boss'}, -- string: 'name', table: {'name', 'name2'}
-- ['taxes'] = {'manager', 'boss'}, -- string: 'name', table: {'name', 'name2'}
-- },
Last updated
Was this helpful?