Main/resources/[Developer]/[Max]/myDj/config.lua

62 lines
1.6 KiB
Lua
Raw Normal View History

2025-06-13 17:43:00 +02:00
Config = {}
Translation = {}
Translation = {
['de'] = {
['DJ_interact'] = 'Drücke ~g~E~s~, um auf das DJ Pult zuzugreifen',
['title_does_not_exist'] = '~r~Dieser Titel existiert nicht!',
},
['en'] = {
['DJ_interact'] = 'Press ~g~E~s~, to access the DJ desk',
['title_does_not_exist'] = '~r~This title does not exist!',
}
}
Config.Locale = 'en'
2025-06-13 19:15:57 +02:00
Config.useESX = true -- can not be disabled without changing the callbacks
2025-06-13 17:43:00 +02:00
Config.enableCommand = false
Config.enableMarker = true -- purple marker at the DJ stations
2025-06-13 19:27:50 +02:00
Config.DJPositions = Config.DJPositions = Config.DJPositions = {
{
name = 'Marc Haus',
pos = vector3(-3108.1047, 1409.5372, 23.2553),
requiredJob = nil, -- example: requiredJob = "dj"
range = 25.0,
volume = 1.0 --[[ do not touch the volume! --]]
}
},
{
{
name = 'Ente Haus',
pos = vector3(122.2373, 609.4364, 212.9984),
requiredJob = nil, -- example: requiredJob = "dj"
range = 25.0,
volume = 1.0 --[[ do not touch the volume! --]]
}
},
{
{
name = 'Dennis Haus',
pos = vector3(-1147.4095, 358.8639, 71.3201),
requiredJob = nil, -- example: requiredJob = "dj"
range = 25.0,
volume = 1.0 --[[ do not touch the volume! --]]
}
},
2025-06-13 19:15:57 +02:00
Config.DJPositions = {
{
2025-06-13 19:27:50 +02:00
name = 'PHP Autohaus',
pos = vector3(-928.5595, -2049.8979, 9.0510),
2025-06-13 19:15:57 +02:00
requiredJob = nil, -- example: requiredJob = "dj"
range = 25.0,
volume = 1.0 --[[ do not touch the volume! --]]
}
}