From be9d9dca43e5c22321f37dd8712b6c0dae7a7518 Mon Sep 17 00:00:00 2001 From: jenz Date: Tue, 30 Jul 2024 20:26:19 +0200 Subject: [PATCH] updated numbers just --- FakeClients/scripting/FakeClients.sp | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/FakeClients/scripting/FakeClients.sp b/FakeClients/scripting/FakeClients.sp index c1de40b7..a036cba9 100755 --- a/FakeClients/scripting/FakeClients.sp +++ b/FakeClients/scripting/FakeClients.sp @@ -528,6 +528,16 @@ public void CheckPopulation() max = iPlayers; min = RoundToFloor(iPlayers * 0.5); } + else if (iPlayers < 26) + { + max = iPlayers; + min = RoundToFloor(iPlayers * 0.3); + } + else if (iPlayers < 36) + { + max = RoundToFloor(iPlayers * 0.5); + min = RoundToFloor(iPlayers * 0.3); + } else { max = RoundToFloor(iPlayers * 0.5); @@ -536,7 +546,7 @@ public void CheckPopulation() iFakesNeeded = GetRandomInt(min, max); //iFakesNeeded = randomAmount - iPlayers; - if (iFakesNeeded < 0 || iPlayers > 25) + if (iFakesNeeded < 0 || iPlayers > 45) { iFakesNeeded = 0; iFakesInTeamNeeded = 0;