forked from Simnation/Main
partysystem
This commit is contained in:
parent
cf78661ba9
commit
65bbd7492b
28 changed files with 11256 additions and 0 deletions
32
resources/[Developer]/[Max]/myDj/config.lua
Normal file
32
resources/[Developer]/[Max]/myDj/config.lua
Normal file
|
@ -0,0 +1,32 @@
|
|||
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 = true -- can not be disabled without changing the callbacks
|
||||
Config.enableCommand = false
|
||||
|
||||
Config.enableMarker = true -- purple marker at the DJ stations
|
||||
|
||||
Config.DJPositions = {
|
||||
{
|
||||
name = 'bahama',
|
||||
pos = vector3(-1381.01, -616.17, 31.5),
|
||||
requiredJob = nil, -- example: requiredJob = "dj"
|
||||
range = 25.0,
|
||||
volume = 1.0 --[[ do not touch the volume! --]]
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue