forked from Simnation/Main
32 lines
825 B
Lua
32 lines
825 B
Lua
![]() |
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'
|
||
|
|
||
|
Config.useESX = false -- can not be disabled without changing the callbacks
|
||
|
Config.enableCommand = false
|
||
|
|
||
|
Config.enableMarker = true -- purple marker at the DJ stations
|
||
|
|
||
|
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! --]]
|
||
|
}
|
||
|
|
||
|
}
|