config.lua
Config = {
Debug = false, -- default false, only suitable to turn on if you are solving a support problem
Framework = 'esx', -- Supported frameworks are 'esx' or 'qbcore'
Locales = {
vehiclePlate = 'Vehicle Plate', -- change to your language (this is description in menu ox_target)..
notMoreAllowed = 'It is not allowed to remove more plates than you have removed',
plateWasMounted = 'The plate was mounted',
plateWasRemoved = 'The plate was removed',
fixedPlate = 'You cannot remove this plate',
noItem = 'You don´t have the necessary item to remove the plate',
hasNotPlate = 'You don´t have a plate from this car',
removingBeforeYou = 'Someone is removing plates before you',
removingPlate = 'Removing plate',
mountingPlate = 'Mounting plate',
},
IsRequiredItem = true,
Item = 'screwdriver',
TimeForRemoval = 15000, -- use always 100 multiple, 1000 is 1 second, 15000 is 15 seconds
TimeToMount = 10000, -- use always 100 multiple, 1000 is 1 second, 10000 is 10 seconds
MaxRemovedPlates = 2, -- maximum number of plates that can be removed by one player
Distance = 2.0, -- max distance from the vehicle when it is possible to remove the plate
FixedPlates = {
'AMBULANCE', -- plates that cannot be removed
'POLICE',
'EMS',
'ADMINCAR',
}
function notif(text)
lib.notify({
title = 'Vehicle Plate',
description = text,
type = 'info'
})
end
Last updated