forked from Simnation/Main
Update config.lua
This commit is contained in:
parent
e6434e77c8
commit
ace67368d1
1 changed files with 30 additions and 11 deletions
|
@ -2,21 +2,40 @@ Config = Config or {}
|
||||||
|
|
||||||
Config.CoreName = 'qb-core' -- Change this if you changed the core name.
|
Config.CoreName = 'qb-core' -- Change this if you changed the core name.
|
||||||
Config.NVItem = 'nightvision' -- Item needed to use nightvision
|
Config.NVItem = 'nightvision' -- Item needed to use nightvision
|
||||||
Config.ThermalItem = 'thermalvision' -- Neues Item für Wärmebildsicht
|
Config.ThermalItem = 'thermalvision' -- Item needed to use thermal vision
|
||||||
Config.CheckHelmet = true -- Prüft, ob der Spieler die entsprechende Brille trägt
|
Config.CheckHelmet = true -- Check if player has the appropriate glasses
|
||||||
Config.NVKey = 'N' -- Taste für Nachtsicht
|
Config.NVKey = 'N' -- Key for nightvision
|
||||||
Config.ThermalKey = 'M' -- Neue Taste für Wärmebildsicht
|
Config.ThermalKey = 'M' -- Key for thermal vision
|
||||||
|
|
||||||
-- Konfigurationsoptionen für die Brillen
|
-- Glasses configuration with drawables and textures
|
||||||
Config.Glasses = {
|
Config.Glasses = {
|
||||||
male = {
|
male = {
|
||||||
up = 116, -- ID für hochgeklappte NV-Brille (männlich)
|
up = {
|
||||||
nvDown = 117, -- ID für runtergeklappte Nachtsichtbrille (männlich)
|
drawable = 116, -- ID für hochgeklappte Brille (männlich)
|
||||||
thermalDown = 118 -- ID für runtergeklappte Wärmebildbrille (männlich)
|
texture = 0 -- Textur für hochgeklappte Brille (männlich)
|
||||||
|
},
|
||||||
|
nvDown = {
|
||||||
|
drawable = 117, -- ID für runtergeklappte Nachtsichtbrille (männlich)
|
||||||
|
texture = 0 -- Textur für runtergeklappte Nachtsichtbrille (männlich)
|
||||||
|
},
|
||||||
|
thermalDown = {
|
||||||
|
drawable = 118, -- ID für runtergeklappte Wärmebildbrille (männlich)
|
||||||
|
texture = 1 -- Textur für runtergeklappte Wärmebildbrille (männlich)
|
||||||
|
}
|
||||||
},
|
},
|
||||||
female = {
|
female = {
|
||||||
up = 70, -- ID für hochgeklappte NV-Brille (weiblich)
|
up = {
|
||||||
nvDown = 73, -- ID für runtergeklappte Nachtsichtbrille (weiblich)
|
drawable = 70, -- ID für hochgeklappte Brille (weiblich)
|
||||||
thermalDown = 73 -- ID für runtergeklappte Wärmebildbrille (weiblich)
|
texture = 2 -- Textur für hochgeklappte Brille (weiblich)
|
||||||
|
},
|
||||||
|
nvDown = {
|
||||||
|
drawable = 73, -- ID für runtergeklappte Nachtsichtbrille (weiblich)
|
||||||
|
texture = 2 -- Textur für runtergeklappte Nachtsichtbrille (weiblich)
|
||||||
|
},
|
||||||
|
thermalDown = {
|
||||||
|
drawable = 73, -- ID für runtergeklappte Wärmebildbrille (weiblich)
|
||||||
|
texture = 2 -- Textur für runtergeklappte Wärmebildbrille (weiblich)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue