This commit is contained in:
Nordi98 2025-07-27 02:52:57 +02:00
parent bc2a683f6f
commit efaef09a83
2 changed files with 152 additions and 333 deletions

View file

@ -156,6 +156,33 @@ Config.teamMasks = {
-- Game Settings
Config.maxGameTime = 600 -- 10 Minuten
Config.maxHits = 30 -- Spiel endet bei 30 Treffern
Config.respawnDelay = 3000 -- 3 Sekunden Respawn-Verzögerung
-- Airsoft-Einstellungen
Config.treatAllWeaponsAsAirsoft = true -- Alle Waffen als Airsoft behandeln
Config.airsoftDamageMultiplier = 0.1 -- Reduzierter Schaden für Airsoft-Waffen
-- Airsoft-Waffen (Hash-Werte)
Config.airsoftWeapons = {
-- Pistolen
[`WEAPON_AIRSOFTGLOCK20`] = true,
-- SMGs
[`WEAPON_AIRSFOTMIRCOUZI`] = true,
[`WEAPON_AIRSOFTMP5`] = true,
-- Gewehre
[`WEAPON_AIRSOFTM4`] = true,
[`WEAPON_AIRSOFTAK47`] = true,
[`WEAPON_AIRSOFTM249`] = true,
[`WEAPON_AIRSOFTG46C`] = true,
[`WEAPON_AIRSOFTR870`] = true,
-- Scharfschützengewehre
[`WEAPON_AIRSOFTR700`] = true,
}
-- Debug Settings
Config.debugMode = true -- Set to false in production
Config.debugMode = true -- Auf false setzen für Produktion