104 lines
		
	
	
	
		
			2.3 KiB
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			104 lines
		
	
	
	
		
			2.3 KiB
		
	
	
	
		
			Lua
		
	
	
	
	
	
Config = {}
 | 
						|
 | 
						|
-- Infopoint Standorte
 | 
						|
Config.InfoPoints = {
 | 
						|
    {
 | 
						|
        id = 1,
 | 
						|
        name = "Polizei Station",
 | 
						|
        coords = vector3(428.23, -984.28, 30.71),
 | 
						|
        blip = {
 | 
						|
            sprite = 480,
 | 
						|
            color = 3,
 | 
						|
            scale = 0.8,
 | 
						|
            display = true
 | 
						|
        }
 | 
						|
    },
 | 
						|
    {
 | 
						|
        id = 2,
 | 
						|
        name = "Krankenhaus",
 | 
						|
        coords = vector3(307.7, -1433.4, 29.8),
 | 
						|
        blip = {
 | 
						|
            sprite = 61,
 | 
						|
            color = 2,
 | 
						|
            scale = 0.8,
 | 
						|
            display = true
 | 
						|
        }
 | 
						|
    },
 | 
						|
    {
 | 
						|
        id = 3,
 | 
						|
        name = "Rathaus Sandy",
 | 
						|
        coords = vector3(1746.17, 3788.09, 35.55),
 | 
						|
        blip = {
 | 
						|
            sprite = 419,
 | 
						|
            color = 5,
 | 
						|
            scale = 0.8,
 | 
						|
            display = true
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
-- Job Berechtigungen
 | 
						|
Config.JobPermissions = {
 | 
						|
    -- Wer kann Events erstellen
 | 
						|
    canCreateEvents = {
 | 
						|
        'police', 'ambulance', 'mechanic', 'realestate', 'taxi', 'burgershot', 'kayas',
 | 
						|
    },
 | 
						|
    
 | 
						|
    -- Wer kann Vorfälle melden
 | 
						|
    canReportIncidents = 'all', -- 'all' für alle, oder spezifische Jobs als Table
 | 
						|
 | 
						|
-- Who can manage license information
 | 
						|
canManageLicenses = {'police'}, -- Add any other jobs that should be able to manage licenses
 | 
						|
    
 | 
						|
    -- Spezielle Job Informationen
 | 
						|
    jobSpecificInfo = {
 | 
						|
        ['police'] = {
 | 
						|
            showIncidents = true,
 | 
						|
            showJobOffers = true,
 | 
						|
            showLicenseInfo = true,
 | 
						|
            showCriminalRecords = true
 | 
						|
        },
 | 
						|
        ['ambulance'] = {
 | 
						|
            showIncidents = true,
 | 
						|
            showJobOffers = true,
 | 
						|
            showMedicalRecords = true
 | 
						|
        },
 | 
						|
        ['mechanic'] = {
 | 
						|
            showJobOffers = true,
 | 
						|
            showVehicleInfo = true
 | 
						|
        },
 | 
						|
        ['realestate'] = {
 | 
						|
            showJobOffers = true,
 | 
						|
            showPropertyInfo = true
 | 
						|
        },
 | 
						|
        ['taxi'] = {
 | 
						|
            showJobOffers = true
 | 
						|
        },
 | 
						|
        ['burgershot'] = {
 | 
						|
            showJobOffers = true
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
-- Vorfall Kategorien
 | 
						|
Config.IncidentCategories = {
 | 
						|
    'Diebstahl',
 | 
						|
    'Vandalismus',
 | 
						|
    'Ruhestörung',
 | 
						|
    'Verkehrsunfall',
 | 
						|
    'Verdächtige Aktivität',
 | 
						|
    'Drogen',
 | 
						|
    'Gewalt',
 | 
						|
    'Sonstiges'
 | 
						|
}
 | 
						|
 | 
						|
-- Event Kategorien
 | 
						|
Config.EventCategories = {
 | 
						|
    'Öffentliche Veranstaltung',
 | 
						|
    'Job Event',
 | 
						|
    'Training',
 | 
						|
    'Meeting',
 | 
						|
    'Party',
 | 
						|
    'Rennen',
 | 
						|
    'Sonstiges'
 | 
						|
}
 |