diff --git a/FakeClients/scripting/FakeClients.sp b/FakeClients/scripting/FakeClients.sp index c1de40b..a036cba 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;