This commit is contained in:
Nordi98 2025-06-30 01:04:56 +02:00
parent a306f1926d
commit 5f1be0d938
2 changed files with 146 additions and 0 deletions

View file

@ -39,3 +39,22 @@ Config.Glasses = {
}
}
-- Flashlight configuration
Config.Flashlight = {
color = {r = 255, g = 255, b = 255}, -- Farbe des Lichts (weiß)
range = 30.0, -- Reichweite des Lichts
intensity = 8.0, -- Intensität des Lichts
offset = {x = 0.0, y = 0.3, z = 0.0} -- Position des Lichts relativ zum Kopf
}
-- Helm-Konfiguration für die Lampe
Config.FlashlightHelmet = {
male = {
drawable = 117, -- ID des Helms mit Lampe (männlich)
texture = 0 -- Textur des Helms mit Lampe (männlich)
},
female = {
drawable = 283, -- ID des Helms mit Lampe (weiblich)
texture = 1 -- Textur des Helms mit Lampe (weiblich)
}
}