This commit is contained in:
Nordi98 2025-06-30 00:25:08 +02:00
parent ee2240f1d6
commit 7de5955637
2 changed files with 65 additions and 13 deletions

View file

@ -2,5 +2,17 @@ Config = Config or {}
Config.CoreName = 'qb-core' -- Change this if you changed the core name.
Config.NVItem = 'nightvision' -- Item needed to use nightvision
Config.CheckHelmet = true -- Check if player has nightvision helmet (clothing)
Config.NVKey = 'N' -- The key you want to be pressed to toggle night/thermal vision (this is the default key, players can change this key in keybinds)
Config.CheckHelmet = true -- Umbenannt zu CheckGlasses wäre besser, aber für Kompatibilität belassen
Config.NVKey = 'N' -- The key you want to be pressed to toggle night/thermal vision
-- Neue Konfigurationsoptionen für die Brillen
Config.Glasses = {
male = {
up = 116, -- ID für hochgeklappte NV-Brille (männlich) - Ändern Sie diese zu Ihrer tatsächlichen ID
down = 117 -- ID für runtergeklappte NV-Brille (männlich) - Ändern Sie diese zu Ihrer tatsächlichen ID
},
female = {
up = 70, -- ID für hochgeklappte NV-Brille (weiblich) - Ändern Sie diese zu Ihrer tatsächlichen ID
down = 73 -- ID für runtergeklappte NV-Brille (weiblich) - Ändern Sie diese zu Ihrer tatsächlichen ID
}
}