1
0
Fork 0
forked from Simnation/Main
Main/resources/[tools]/thommie-nightvision/config.lua

23 lines
975 B
Lua
Raw Normal View History

2025-06-29 23:58:18 +02:00
Config = Config or {}
Config.CoreName = 'qb-core' -- Change this if you changed the core name.
Config.NVItem = 'nightvision' -- Item needed to use nightvision
2025-06-30 00:40:05 +02:00
Config.ThermalItem = 'thermalvision' -- Neues Item für Wärmebildsicht
Config.CheckHelmet = true -- Prüft, ob der Spieler die entsprechende Brille trägt
Config.NVKey = 'N' -- Taste für Nachtsicht
Config.ThermalKey = 'M' -- Neue Taste für Wärmebildsicht
2025-06-30 00:25:08 +02:00
2025-06-30 00:40:05 +02:00
-- Konfigurationsoptionen für die Brillen
2025-06-30 00:25:08 +02:00
Config.Glasses = {
male = {
2025-06-30 00:40:05 +02:00
up = 116, -- ID für hochgeklappte NV-Brille (männlich)
nvDown = 117, -- ID für runtergeklappte Nachtsichtbrille (männlich)
thermalDown = 118 -- ID für runtergeklappte Wärmebildbrille (männlich)
2025-06-30 00:25:08 +02:00
},
female = {
2025-06-30 00:40:05 +02:00
up = 70, -- ID für hochgeklappte NV-Brille (weiblich)
nvDown = 73, -- ID für runtergeklappte Nachtsichtbrille (weiblich)
thermalDown = 73 -- ID für runtergeklappte Wärmebildbrille (weiblich)
2025-06-30 00:25:08 +02:00
}
}