forked from Simnation/Main
ed
This commit is contained in:
parent
e3605df057
commit
db8f07a192
3 changed files with 798 additions and 0 deletions
101
resources/[tools]/nordi_infopoint/config.lua
Normal file
101
resources/[tools]/nordi_infopoint/config.lua
Normal file
|
@ -0,0 +1,101 @@
|
|||
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
|
||||
|
||||
-- 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'
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue