This commit is contained in:
Nordi98 2025-07-26 07:01:07 +02:00
parent 9b0de65e94
commit 79e5103db6
2 changed files with 288 additions and 175 deletions

View file

@ -6,7 +6,7 @@ Config.lobbyPos = vector3(2019.5784, 2841.1104, 50.3052)
-- NPC für Game Management
Config.gameNPC = {
model = 'S_M_Y_ArmyMech_01',
coords = vector4(2019.5784, 2841.1104, 50.3052, 240.4603)
coords = vector4(2019.5784, 2841.1104, 49.3052, 240.4603)
}
-- Spielfelder Konfiguration
@ -48,6 +48,15 @@ Config.gameFields = {
name = "Arena 2",
maxPlayers = 16,
-- Eigene Lobby für dieses Feld
lobby = {
pos = vector3(-1500.0, -3000.0, 21.4),
npc = {
model = 's_m_y_cop_01',
coords = vector4(-1500.0, -3000.0, 20.4, 180.0)
}
},
teamSpawns = {
team1 = {
vector3(-2000.0, -2700.0, 25.0),
@ -73,20 +82,74 @@ Config.gameFields = {
color = {r = 0, g = 0, b = 255, a = 100}
}
}
},
field3 = {
name = "Desert Arena",
maxPlayers = 24,
-- Eigene Lobby für dieses Feld
lobby = {
pos = vector3(1500.0, 3000.0, 40.0),
npc = {
model = 's_m_y_cop_01',
coords = vector4(1500.0, 3000.0, 39.0, 90.0)
}
},
teamSpawns = {
team1 = {
vector3(1400.0, 2900.0, 40.0),
vector3(1395.0, 2905.0, 40.0),
vector3(1405.0, 2895.0, 40.0)
},
team2 = {
vector3(1600.0, 3100.0, 40.0),
vector3(1605.0, 3105.0, 40.0),
vector3(1595.0, 3095.0, 40.0)
}
},
teamZones = {
team1 = {
center = vector3(1380.0, 2880.0, 40.0),
radius = 12.0,
color = {r = 255, g = 0, b = 0, a = 100}
},
team2 = {
center = vector3(1620.0, 3120.0, 40.0),
radius = 12.0,
color = {r = 0, g = 0, b = 255, a = 100}
}
}
}
}
-- Team Masken
Config.teamMasks = {
team1 = {
component = 1,
drawable = 52,
texture = 0
male = {
component = 1,
drawable = 52,
texture = 0
},
female = {
component = 1,
drawable = 169,
texture = 4
}
},
team2 = {
component = 1,
drawable = 54,
texture = 0
male = {
component = 1,
drawable = 54,
texture = 0
},
female = {
component = 1,
drawable = 169,
texture = 3
}
}
}