From c04f98e87b119f1ae19f644b6b6b767a21256cd5 Mon Sep 17 00:00:00 2001 From: Dogan Date: Sun, 1 Sep 2019 14:01:29 +0200 Subject: [PATCH] FakePopulation: new names and slight config change --- FakePopulation/scripting/FakePopulation.sp | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/FakePopulation/scripting/FakePopulation.sp b/FakePopulation/scripting/FakePopulation.sp index c62d9987..ae533e4a 100644 --- a/FakePopulation/scripting/FakePopulation.sp +++ b/FakePopulation/scripting/FakePopulation.sp @@ -3,8 +3,8 @@ #pragma semicolon 1 #pragma newdecls required -#define NUMBEROFNAMES 48 -char g_cName[NUMBEROFNAMES][] = {"Dwelitram", "Gwyri", "Caredus", "Arerawia", "Vilali", "Astiwiel", "Vardonydd", "Ybaossa", "Umyk", "Nico50Pax", "Onand", "Thelian", "Nydaleth", "Chomarin", "Traedien", "Miev", "Kaaede", "Koamond", "TheRottenBenson", "BigLegend2017", "TRIGGEREDHarambexXx", "InPepe2016", "xXxMaster2012", "InBoixXx", "TheKopsing", "Cornelius", "Gustavo", "Bryant", "Winfred", "Nicolas", "Mitchel", "Dana", "Carrol", "Darell", "Ruben", "Jeromy", "Wade", "Scotty", "Salvatore", "Kory", "Don", "Morgan", "Kurtis", "Federico", "Darin", "css-ru", "aimbot", "lastkraftwagenfahrzeug"}; +#define NUMBEROFNAMES 62 +char g_cName[NUMBEROFNAMES][] = {"Dwelitram", "Gwyri", "Caredus", "Arerawia", "Vilali", "Astiwiel", "Vardonydd", "Ybaossa", "Umyk", "Nico50Pax", "Onand", "Thelian", "Nydaleth", "Chomarin", "Traedien", "Miev", "Kaaede", "Koamond", "TheRottenBenson", "BigLegend2017", "TRIGGEREDHarambexXx", "InPepe2016", "xXxMaster2012", "InBoixXx", "TheKopsing", "Cornelius", "Gustavo", "Bryant", "Winfred", "Nicolas", "Mitchel", "Dana", "Carrol", "Darell", "Ruben", "Jeromy", "Wade", "Scotty", "Salvatore", "Kory", "Don", "Morgan", "Kurtis", "Federico", "Darin", "css-ru", "aimbot", "lastkraftwagenfahrzeug", "edger", "clownface", "слово", "счастливый", "kara", "puta", "meow", "uncle sam", "FunBun", "Counter-Strike.Com.Ua", "For-css.Ru", "BOBO", "", "."}; bool g_bFakePopulation[MAXPLAYERS+1]; @@ -103,20 +103,18 @@ public void CheckPopulation() } int iFakesNeeded = 0; - if (iPlayers >= 61) + if (iPlayers > 61) iFakesNeeded = 0; - else if(iPlayers >= 60) + else if(iPlayers > 60) iFakesNeeded = 1; - else if(iPlayers >= 55) + else if(iPlayers > 55) iFakesNeeded = 3; - else if (iPlayers >= 40) + else if (iPlayers > 20) iFakesNeeded = 4; - else if (iPlayers >= 20) + else if (iPlayers > 10) iFakesNeeded = 3; - else if (iPlayers >= 10) + else if (iPlayers > 5) iFakesNeeded = 2; - else if (iPlayers >= 5) - iFakesNeeded = 1; else iFakesNeeded = 0;