Update dj
This commit is contained in:
		
							parent
							
								
									1c39b40f7a
								
							
						
					
					
						commit
						97fc99b34a
					
				
					 1 changed files with 78 additions and 15 deletions
				
			
		|  | @ -3,30 +3,93 @@ Translation = {} | |||
|  | ||||
| Translation = { | ||||
|     ['de'] = { | ||||
|         ['DJ_interact'] = 'Drücke ~g~E~s~, um auf das DJ Pult zuzugreifen', | ||||
|         ['DJ_interact'] = 'Drücke ~g~E~s~, um auf das DJ-Pult zuzugreifen', | ||||
|         ['title_does_not_exist'] = '~r~Dieser Titel existiert nicht!', | ||||
|         ['no_permission'] = '~r~Kein Zugang für diesen DJ-Bereich!', | ||||
|     }, | ||||
|  | ||||
|     ['en'] = { | ||||
|         ['DJ_interact'] = 'Press ~g~E~s~, to access the DJ desk', | ||||
|         ['title_does_not_exist'] = '~r~This title does not exist!', | ||||
|         ['DJ_interact'] = 'Press ~g~E~s~ to access the DJ booth', | ||||
|         ['title_does_not_exist'] = '~r~Track not found!', | ||||
|         ['no_permission'] = '~r~No access to this DJ area!', | ||||
|     } | ||||
| } | ||||
|  | ||||
| Config.Locale = 'en' | ||||
| Config.Locale = 'de'  -- 'de' o 'en' | ||||
|  | ||||
| Config.useESX = true -- can not be disabled without changing the callbacks | ||||
| Config.enableCommand = false | ||||
| Config.useESX = true          -- Job-System benötigt ESX/QBCore | ||||
| Config.enableCommand = false  -- Nutze lieber ein Target-System (z.B. qb-target) | ||||
| Config.enableMarker = true    -- Lila Marker an DJ-Positionen | ||||
|  | ||||
| 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! --]] | ||||
|     } | ||||
|         name = 'marc_haus', | ||||
|         pos = vector3(-3108.1047, 1409.5372, 23.2553), | ||||
|         requiredJob = nil, | ||||
|         range = 20.0 | ||||
|     }, | ||||
|  | ||||
| } | ||||
|      | ||||
|     { | ||||
|         name = 'max_haus', | ||||
|         pos = vector3(122.2373, 609.4364, 212.9984), | ||||
|         requiredJob = nil, | ||||
|         range = 20.0 | ||||
|     }, | ||||
|  | ||||
|      | ||||
|     { | ||||
|         name = 'dennis_haus', | ||||
|         pos = vector3(-1147.4095, 358.8639, 71.3201), | ||||
|         requiredJob = nil, | ||||
|         range = 20.0  -- ready | ||||
|     }, | ||||
|  | ||||
|      | ||||
|     { | ||||
|         name = 'kleenes_haus', | ||||
|         pos = vector3(-565.9, 276.5, 83.0), | ||||
|         requiredJob = nil, | ||||
|         range = 20.0 | ||||
|     }, | ||||
|  | ||||
|      | ||||
|     { | ||||
|         name = 'stefan_haus', | ||||
|         pos = vector3(-1100.5, -2890.8, 14.0), | ||||
|         requiredJob = nil, | ||||
|         range = 20.0 | ||||
|     }, | ||||
|  | ||||
|      | ||||
|     { | ||||
|         name = 'php_mechanic_autohaus', | ||||
|         pos = vector3(1775.8, 2550.5, 46.0), | ||||
|         requiredJob = nil, | ||||
|         range = 20.0   | ||||
|     }, | ||||
|  | ||||
|      | ||||
|     { | ||||
|         name = 'park', | ||||
|         pos = vector3(-2043.2, -1031.5, 12.0), | ||||
|         requiredJob = nil, | ||||
|         range = 20.0   | ||||
|     }, | ||||
|  | ||||
|      | ||||
|     { | ||||
|         name = 'cayo', | ||||
|         pos = vector3(145.0, -1074.5, 30.0), | ||||
|         requiredJob = nil, | ||||
|         range = 20.0 | ||||
|     }, | ||||
| } | ||||
|  | ||||
| Config.MarkerSettings = { | ||||
|     type = 27,          -- Purple Marker (Typ 27 = rotierender Ring) | ||||
|     scale = { x = 1.5, y = 1.5, z = 0.5 },  -- Größe XYZ | ||||
|     color = { r = 180, g = 0, b = 255, a = 120 },  -- Lila (RGBA) | ||||
|     bobUpDown = true    -- Schwebe-Effekt | ||||
| } | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Max
						Max