- Search only owned vehicles (you can enable this in config)
- Clean UI made with tailwind
- Easy to use
- Multiple languages
- Low usage (from 0.01ms to max 0.04ms)
- ESX Legacy
- Linden inventory
- MySQL Async
Code:
Config = {}
Config.OnlyRegisteredCars = false -- If true only cars in owned_vehicles table could be searched for key
Config.UseProgressBar = true
Config.Locale = 'en'
function Notification(type, text)
if type == 'success' then
exports.bulletin:SendSuccess(text, 3000, 'bottomleft', true)
elseif type == 'error' then
exports.bulletin:SendError(text, 3000, 'bottomleft', true)
elseif type == 'info' then
exports.bulletin:SendInfo(text, 3000, 'bottomleft', true)
end
end
function Progress(text,time)
if Config.UseProgressBar then
exports.rprogress:Start(text, 1500)
end
end
Add this to your linden_inventory/shared/items.lua
Code:
['car_keys'] = {
label = 'Car keys',
weight = 0.125,
stack = true,
close = true,
client = {
usetime = 0,
event = 'Boost-Locksystem:LockUnlock'
}
},
Get it here !