48 lines
1.5 KiB
Lua
48 lines
1.5 KiB
Lua
Config = {}
|
|
|
|
-- Erlaubte Jobs für das Vehicle Admin System
|
|
Config.AllowedJobs = {
|
|
['police'] = true,
|
|
['admin'] = true,
|
|
['mechanic'] = true,
|
|
['ambulance'] = true,
|
|
['cardealer'] = true,
|
|
-- Füge hier weitere Jobs hinzu
|
|
}
|
|
|
|
-- Debug-Modus
|
|
Config.Debug = false
|
|
|
|
-- Log-Einstellungen
|
|
Config.Log = {
|
|
Enabled = true,
|
|
Webhook = "https://discord.com/api/webhooks/1366812966049288192/9ZjJC9_gLX6Fk-acf0YSW_haGWpCqG9zRGWaj0wCKLZefp8FX-GwNZBP77H6K93KfIw3", -- Verwende den gleichen Webhook wie im Garagensystem
|
|
Colors = {
|
|
green = 56108,
|
|
grey = 8421504,
|
|
red = 16711680,
|
|
orange = 16744192,
|
|
blue = 2061822,
|
|
purple = 11750815,
|
|
},
|
|
SystemName = "Evolution_State_life Log [Fahrzeugadmin]",
|
|
UserAvatar = '',
|
|
SystemAvatar = '',
|
|
}
|
|
|
|
-- Standard-Garagen falls keine in QBCore definiert sind
|
|
Config.DefaultGarages = {
|
|
['legion'] = { label = 'Legion Square Garage' },
|
|
['pillboxgarage'] = { label = 'Pillbox Garage' },
|
|
['spanishave'] = { label = 'Spanish Avenue Garage' },
|
|
['caears24'] = { label = 'Caears 24 Garage' },
|
|
['littleseoul'] = { label = 'Little Seoul Garage' },
|
|
['rockfordgarage'] = { label = 'Rockford Garage' },
|
|
['lamesamotel'] = { label = 'Lamesa Motel Garage' },
|
|
['airportp'] = { label = 'Airport Parking' },
|
|
['depot'] = { label = 'Depot' },
|
|
['impound'] = { label = 'Impound Lot' },
|
|
['pdgarage'] = { label = 'Police Garage' },
|
|
['emsgarage'] = { label = 'EMS Garage' },
|
|
['mechgarage'] = { label = 'Mechanic Garage' }
|
|
}
|