ed
This commit is contained in:
parent
bc2a683f6f
commit
efaef09a83
2 changed files with 152 additions and 333 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue