diff --git a/OpenGSQ/BinaryReaderExtensions.cs b/OpenGSQ/BinaryReaderExtensions.cs index 5c16d8e..c5597cf 100644 --- a/OpenGSQ/BinaryReaderExtensions.cs +++ b/OpenGSQ/BinaryReaderExtensions.cs @@ -96,5 +96,16 @@ public static bool TryReadStringEx(this BinaryReader br, out string outString, b { return br.TryReadStringEx(out outString, new byte[] { charByte }); } + + /// + /// Reads a Pascal string from a binary stream. + /// + /// The binary reader to read the string from. + /// A string read from the binary stream. + public static string ReadPascalString(this BinaryReader br) + { + int length = br.ReadByte(); + return Encoding.UTF8.GetString(br.ReadBytes(length - 1)); + } } } diff --git a/OpenGSQ/Protocols/ASE.cs b/OpenGSQ/Protocols/ASE.cs index 40b9cc4..f562fcc 100644 --- a/OpenGSQ/Protocols/ASE.cs +++ b/OpenGSQ/Protocols/ASE.cs @@ -50,15 +50,15 @@ public async Task GetStatus() return new Status { - GameName = ReadString(br), - GamePort = int.Parse(ReadString(br)), - HostName = ReadString(br), - GameType = ReadString(br), - Map = ReadString(br), - Version = ReadString(br), - Password = ReadString(br) != "0", - NumPlayers = int.Parse(ReadString(br)), - MaxPlayers = int.Parse(ReadString(br)), + GameName = br.ReadPascalString(), + GamePort = int.Parse(br.ReadPascalString()), + Hostname = br.ReadPascalString(), + GameType = br.ReadPascalString(), + Map = br.ReadPascalString(), + Version = br.ReadPascalString(), + Password = br.ReadPascalString() != "0", + NumPlayers = int.Parse(br.ReadPascalString()), + MaxPlayers = int.Parse(br.ReadPascalString()), Rules = ParseRules(br), Players = ParsePlayers(br), }; @@ -71,14 +71,14 @@ private Dictionary ParseRules(BinaryReader br) while (!br.IsEnd()) { - string key = ReadString(br); + string key = br.ReadPascalString(); if (string.IsNullOrEmpty(key)) { break; } - rules[key] = ReadString(br); + rules[key] = br.ReadPascalString(); } return rules; @@ -103,41 +103,35 @@ private Player ParsePlayer(BinaryReader br) if ((flags & 1) == 1) { - player.Name = ReadString(br); + player.Name = br.ReadPascalString(); } if ((flags & 2) == 2) { - player.Team = ReadString(br); + player.Team = br.ReadPascalString(); } if ((flags & 4) == 4) { - player.Skin = ReadString(br); + player.Skin = br.ReadPascalString(); } if ((flags & 8) == 8) { - player.Score = int.TryParse(ReadString(br), out int result) ? result : 0; + player.Score = int.TryParse(br.ReadPascalString(), out int result) ? result : 0; } if ((flags & 16) == 16) { - player.Ping = int.TryParse(ReadString(br), out int result) ? result : 0; + player.Ping = int.TryParse(br.ReadPascalString(), out int result) ? result : 0; } if ((flags & 32) == 32) { - player.Time = int.TryParse(ReadString(br), out int result) ? result : 0; + player.Time = int.TryParse(br.ReadPascalString(), out int result) ? result : 0; } return player; } - - private string ReadString(BinaryReader br) - { - int length = br.ReadByte(); - return Encoding.UTF8.GetString(br.ReadBytes(length - 1)); - } } } \ No newline at end of file diff --git a/OpenGSQ/Responses/ASE/Status.cs b/OpenGSQ/Responses/ASE/Status.cs index c2a0b14..c57f20c 100644 --- a/OpenGSQ/Responses/ASE/Status.cs +++ b/OpenGSQ/Responses/ASE/Status.cs @@ -20,7 +20,7 @@ public class Status /// /// Gets or sets the host name of the game. /// - public string HostName { get; set; } + public string Hostname { get; set; } /// /// Gets or sets the type of the game. diff --git a/OpenGSQ/Responses/Samp/Player.cs b/OpenGSQ/Responses/Samp/Player.cs index 130f06b..e467f05 100644 --- a/OpenGSQ/Responses/Samp/Player.cs +++ b/OpenGSQ/Responses/Samp/Player.cs @@ -25,5 +25,4 @@ public class Player /// public int Ping { get; set; } } - } \ No newline at end of file diff --git a/OpenGSQ/Responses/Source/Info.cs b/OpenGSQ/Responses/Source/PartialInfo.cs similarity index 100% rename from OpenGSQ/Responses/Source/Info.cs rename to OpenGSQ/Responses/Source/PartialInfo.cs diff --git a/OpenGSQTests/Results/ASETests/GetStatusTest.json b/OpenGSQTests/Results/ASETests/GetStatusTest.json index 17696e1..9954c23 100644 --- a/OpenGSQTests/Results/ASETests/GetStatusTest.json +++ b/OpenGSQTests/Results/ASETests/GetStatusTest.json @@ -1,217 +1,209 @@ { "GameName": "mta", "GamePort": 22003, - "HostName": "MTA Türkiye ✖ GÜL GAMİNG FREEROAM ✖ [Roleplay/Askeri/Drift/Drop/Turkey/Tr/Gül Gaming]", - "GameType": "23:00 Etkinlik (Discord)", + "Hostname": "MTA Türkiye ✖ GÜL GAMİNG FREEROAM ✖ [Roleplay/Askeri/Drift/Drop/Turkey/Tr/Gül Gaming]", + "GameType": "BEDAVA - VIP", "Map": "None", "Version": "1.6", "Password": false, - "NumPlayers": 98, + "NumPlayers": 95, "MaxPlayers": 120, "Rules": {}, "Players": [ { - "Name": "GiganticDaybed48", + "Name": "Yakuza", "Team": "", "Skin": "", "Score": 0, - "Ping": 75, + "Ping": 143, "Time": 0 }, { - "Name": "Uzmancavusmurat", + "Name": "SIVAS", "Team": "", "Skin": "", "Score": 0, - "Ping": 68, + "Ping": 82, "Time": 0 }, { - "Name": "SAMETNEXX", + "Name": "JaxTenz", "Team": "", "Skin": "", "Score": 0, - "Ping": 68, + "Ping": 75, "Time": 0 }, { - "Name": "Snowden", + "Name": "Lacoste^^", "Team": "", "Skin": "", "Score": 0, - "Ping": 73, + "Ping": 67, "Time": 0 }, { - "Name": "Melikee", + "Name": "efe911", "Team": "", "Skin": "", "Score": 0, - "Ping": 91, + "Ping": 75, "Time": 0 }, { - "Name": "SAGO|MANYAGI", + "Name": "Oxy$Gen", "Team": "", "Skin": "", "Score": 0, - "Ping": 119, + "Ping": 88, "Time": 0 }, { - "Name": "lvntrd", + "Name": "AP3X", "Team": "", "Skin": "", "Score": 0, - "Ping": 74, + "Ping": 75, "Time": 0 }, { - "Name": "YAKXJ", + "Name": "HesitantTorchiere26", "Team": "", "Skin": "", "Score": 0, - "Ping": 69, + "Ping": 81, "Time": 0 }, { - "Name": "AmuckKitten2", + "Name": "Cann", "Team": "", "Skin": "", "Score": 0, - "Ping": 67, + "Ping": 362, "Time": 0 }, { - "Name": "Bati", + "Name": "Melikee", "Team": "", "Skin": "", "Score": 0, - "Ping": 67, + "Ping": 93, "Time": 0 }, { - "Name": "REDBUL", + "Name": "JINXED:=", "Team": "", "Skin": "", "Score": 0, - "Ping": 72, + "Ping": 71, "Time": 0 }, { - "Name": "TROZY", + "Name": "sude", "Team": "", "Skin": "", "Score": 0, - "Ping": 81, + "Ping": 50, "Time": 0 }, { - "Name": "Pyrozen", + "Name": "FerhatRose", "Team": "", "Skin": "", "Score": 0, - "Ping": 79, + "Ping": 151, "Time": 0 }, { - "Name": "TNs-HAMOUDI*-*", + "Name": "ardaunlms", "Team": "", "Skin": "", "Score": 0, - "Ping": 1393, + "Ping": 88, "Time": 0 }, { - "Name": "Merve_", + "Name": "Asphaly", "Team": "", "Skin": "", "Score": 0, - "Ping": 73, + "Ping": 59, "Time": 0 }, { - "Name": "berk", + "Name": "NK-CoherentTaxi33", "Team": "", "Skin": "", "Score": 0, - "Ping": 63, + "Ping": 353, "Time": 0 }, { - "Name": "Han", + "Name": "BrownGuineapig60", "Team": "", "Skin": "", "Score": 0, - "Ping": 92, + "Ping": 59, "Time": 0 }, { - "Name": "TonyyMontanaa", + "Name": "umutbaba", "Team": "", "Skin": "", "Score": 0, - "Ping": 70, + "Ping": 54, "Time": 0 }, { - "Name": "SuperZone", + "Name": "Nightmustafa", "Team": "", "Skin": "", "Score": 0, - "Ping": 68, + "Ping": 140, "Time": 0 }, { - "Name": "HEATUFAN", + "Name": "Gloxinia", "Team": "", "Skin": "", "Score": 0, - "Ping": 72, - "Time": 0 - }, - { - "Name": "WomanlyFlute33", - "Team": "", - "Skin": "", - "Score": 0, - "Ping": 67, + "Ping": 75, "Time": 0 }, { - "Name": "RynKent", + "Name": "FORDCU61", "Team": "", "Skin": "", "Score": 0, - "Ping": 137, + "Ping": 75, "Time": 0 }, { - "Name": "CalmCap85", + "Name": "TozBey", "Team": "", "Skin": "", "Score": 0, - "Ping": 101, + "Ping": 71, "Time": 0 }, { - "Name": "#WAREX^&HOL!GAN", + "Name": "Agrippa", "Team": "", "Skin": "", "Score": 0, - "Ping": 57, + "Ping": 102, "Time": 0 }, { - "Name": "Zhnya", + "Name": "Morfin", "Team": "", "Skin": "", "Score": 0, - "Ping": 199, + "Ping": 70, "Time": 0 }, { - "Name": "TRMami", + "Name": "laz61", "Team": "", "Skin": "", "Score": 0, @@ -219,383 +211,383 @@ "Time": 0 }, { - "Name": "#[R]aiweN.'", + "Name": "MR_Brave", "Team": "", "Skin": "", "Score": 0, - "Ping": 78, + "Ping": 75, "Time": 0 }, { - "Name": "berat", + "Name": "AZER~>BILE~>BASARAMADI", "Team": "", "Skin": "", "Score": 0, - "Ping": 91, + "Ping": 116, "Time": 0 }, { - "Name": "gulcanss", + "Name": "TightHood54", "Team": "", "Skin": "", "Score": 0, - "Ping": 178, + "Ping": 51, "Time": 0 }, { - "Name": "Pika", + "Name": "Baliq", "Team": "", "Skin": "", "Score": 0, - "Ping": 86, + "Ping": 77, "Time": 0 }, { - "Name": "baranny", + "Name": "efecankx", "Team": "", "Skin": "", "Score": 0, - "Ping": 86, + "Ping": 52, "Time": 0 }, { - "Name": "omer911", + "Name": "mamutali", "Team": "", "Skin": "", "Score": 0, - "Ping": 138, + "Ping": 94, "Time": 0 }, { - "Name": "zhdsenturk", + "Name": "#Crown", "Team": "", "Skin": "", "Score": 0, - "Ping": 71, + "Ping": 88, "Time": 0 }, { - "Name": "AmusingAnkle96", + "Name": "Marlboro", "Team": "", "Skin": "", "Score": 0, - "Ping": 86, + "Ping": 190, "Time": 0 }, { - "Name": "YSF-LOSEPH", + "Name": "MustafaX", "Team": "", "Skin": "", "Score": 0, - "Ping": 85, + "Ping": 83, "Time": 0 }, { - "Name": "#Radu", + "Name": "EGEMEN", "Team": "", "Skin": "", "Score": 0, - "Ping": 80, + "Ping": 102, "Time": 0 }, { - "Name": "YigitVeysel", + "Name": "nc", "Team": "", "Skin": "", "Score": 0, - "Ping": 78, + "Ping": 61, "Time": 0 }, { - "Name": "AbundantThigh59", + "Name": "Emir", "Team": "", "Skin": "", "Score": 0, - "Ping": 73, + "Ping": 74, "Time": 0 }, { - "Name": "HulkingCasserole62", + "Name": "PARAPALAZULA", "Team": "", "Skin": "", "Score": 0, - "Ping": 72, + "Ping": 69, "Time": 0 }, { - "Name": "Babacan06", + "Name": "AwakeSamovar2", "Team": "", "Skin": "", "Score": 0, - "Ping": 72, + "Ping": 74, "Time": 0 }, { - "Name": "ardababapiro12", + "Name": "LoutishVirginal30", "Team": "", "Skin": "", "Score": 0, - "Ping": 67, + "Ping": 78, "Time": 0 }, { - "Name": "SARSILMAZ", + "Name": "TAKSIMLI_BUSE", "Team": "", "Skin": "", "Score": 0, - "Ping": 67, + "Ping": 83, "Time": 0 }, { - "Name": "CowardlyButterfly77", + "Name": "^H4luk'!", "Team": "", "Skin": "", "Score": 0, - "Ping": 72, + "Ping": 83, "Time": 0 }, { - "Name": "ObsoleteShrimp5", + "Name": "AdhocClipper88", "Team": "", "Skin": "", "Score": 0, - "Ping": 87, + "Ping": 326, "Time": 0 }, { - "Name": "AdaptableSquash18", + "Name": "cio", "Team": "", "Skin": "", "Score": 0, - "Ping": 86, + "Ping": 52, "Time": 0 }, { - "Name": "FurkanTR", + "Name": "SAMETNEXX", "Team": "", "Skin": "", "Score": 0, - "Ping": 67, + "Ping": 56, "Time": 0 }, { - "Name": "mordacai", + "Name": "REDBUL", "Team": "", "Skin": "", "Score": 0, - "Ping": 85, + "Ping": 78, "Time": 0 }, { - "Name": "efe911", + "Name": "kaantheking", "Team": "", "Skin": "", "Score": 0, - "Ping": 68, + "Ping": 59, "Time": 0 }, { - "Name": "cio", + "Name": "Chezzaritz", "Team": "", "Skin": "", "Score": 0, - "Ping": 74, + "Ping": 55, "Time": 0 }, { - "Name": "Grimz", + "Name": "TXC-CASPER", "Team": "", "Skin": "", "Score": 0, - "Ping": 67, + "Ping": 69, "Time": 0 }, { - "Name": "LEXUS35", + "Name": "HakanCaner", "Team": "", "Skin": "", "Score": 0, - "Ping": 102, + "Ping": 68, "Time": 0 }, { - "Name": "ThirstyWrestler40", + "Name": "Bomboclat_", "Team": "", "Skin": "", "Score": 0, - "Ping": 61, + "Ping": 88, "Time": 0 }, { - "Name": "TenderArmoire20", + "Name": "Letted", "Team": "", "Skin": "", "Score": 0, - "Ping": 83, + "Ping": 75, "Time": 0 }, { - "Name": "Ahmet", + "Name": "illegal39", "Team": "", "Skin": "", "Score": 0, - "Ping": 90, + "Ping": 60, "Time": 0 }, { - "Name": "PaltryTrain88", + "Name": "STANZY", "Team": "", "Skin": "", "Score": 0, - "Ping": 62, + "Ping": 219, "Time": 0 }, { - "Name": "ObeisantToad61", + "Name": "Metrix", "Team": "", "Skin": "", "Score": 0, - "Ping": 144, + "Ping": 74, "Time": 0 }, { - "Name": "ahmet123", + "Name": "MeanTummy53", "Team": "", "Skin": "", "Score": 0, - "Ping": 78, + "Ping": 72, "Time": 0 }, { - "Name": "SOLAKISCHAVO", + "Name": "144hzPekk", "Team": "", "Skin": "", "Score": 0, - "Ping": 62, + "Ping": 85, "Time": 0 }, { - "Name": "ParaBabasi", + "Name": "RainyWaffles18", "Team": "", "Skin": "", "Score": 0, - "Ping": 53, + "Ping": 48, "Time": 0 }, { - "Name": "RamazanBaygara", + "Name": "GODZILLA", "Team": "", "Skin": "", "Score": 0, - "Ping": 61, + "Ping": 89, "Time": 0 }, { - "Name": "LongingConductor67", + "Name": "yagizbabbba", "Team": "", "Skin": "", "Score": 0, - "Ping": 54, + "Ping": 96, "Time": 0 }, { - "Name": "RemarkableDragonfly22", + "Name": "ByLua", "Team": "", "Skin": "", "Score": 0, - "Ping": 105, + "Ping": 58, "Time": 0 }, { - "Name": "eZroLexx", + "Name": "Lolita", "Team": "", "Skin": "", "Score": 0, - "Ping": 74, + "Ping": 70, "Time": 0 }, { - "Name": "amcarte", + "Name": "Zeld", "Team": "", "Skin": "", "Score": 0, - "Ping": 67, + "Ping": 70, "Time": 0 }, { - "Name": "AdjoiningDaughter94", + "Name": "#ByReaL", "Team": "", "Skin": "", "Score": 0, - "Ping": 78, + "Ping": 113, "Time": 0 }, { - "Name": "DEDUBLU", + "Name": "Yakisikli_Erkan", "Team": "", "Skin": "", "Score": 0, - "Ping": 67, + "Ping": 69, "Time": 0 }, { - "Name": "LoutishVirginal30", + "Name": "ECRINNN", "Team": "", "Skin": "", "Score": 0, - "Ping": 73, + "Ping": 412, "Time": 0 }, { - "Name": "RaneX", + "Name": "1940emo", "Team": "", "Skin": "", "Score": 0, - "Ping": 73, + "Ping": 69, "Time": 0 }, { - "Name": "HesitantTorchiere26", + "Name": "Simurh", "Team": "", "Skin": "", "Score": 0, - "Ping": 126, + "Ping": 105, "Time": 0 }, { - "Name": "Morfin", + "Name": "TUSUBASA.", "Team": "", "Skin": "", "Score": 0, - "Ping": 95, + "Ping": 163, "Time": 0 }, { - "Name": "mami7498", + "Name": "WateryBanjo65", "Team": "", "Skin": "", "Score": 0, - "Ping": 72, + "Ping": 67, "Time": 0 }, { - "Name": "HellasWerona", + "Name": "mu", "Team": "", "Skin": "", "Score": 0, - "Ping": 62, + "Ping": 60, "Time": 0 }, { - "Name": "ConsciousRail24", + "Name": "Grimz", "Team": "", "Skin": "", "Score": 0, - "Ping": 79, + "Ping": 457, "Time": 0 }, { - "Name": "CJ", + "Name": "Slarch", "Team": "", "Skin": "", "Score": 0, @@ -603,39 +595,23 @@ "Time": 0 }, { - "Name": "WholeBum50", - "Team": "", - "Skin": "", - "Score": 0, - "Ping": 561, - "Time": 0 - }, - { - "Name": "HaltingBloom4", - "Team": "", - "Skin": "", - "Score": 0, - "Ping": 66, - "Time": 0 - }, - { - "Name": "BerserkCriminal13", + "Name": "Merve_", "Team": "", "Skin": "", "Score": 0, - "Ping": 86, + "Ping": 83, "Time": 0 }, { - "Name": "DeterminedNougats72", + "Name": "DiligentRetina14", "Team": "", "Skin": "", "Score": 0, - "Ping": 79, + "Ping": 65, "Time": 0 }, { - "Name": "FivePie74", + "Name": "CeaselessEris82", "Team": "", "Skin": "", "Score": 0, @@ -643,155 +619,155 @@ "Time": 0 }, { - "Name": "samet", + "Name": "giresunhamsisiemopasa", "Team": "", "Skin": "", "Score": 0, - "Ping": 95, + "Ping": 102, "Time": 0 }, { - "Name": "miro", + "Name": "Pyrozen", "Team": "", "Skin": "", "Score": 0, - "Ping": 79, + "Ping": 104, "Time": 0 }, { - "Name": "UnableAlligator13", + "Name": "FURKAN", "Team": "", "Skin": "", "Score": 0, - "Ping": 61, + "Ping": 91, "Time": 0 }, { - "Name": "Oxy$Gen", + "Name": "~Ls~ZoLeY", "Team": "", "Skin": "", "Score": 0, - "Ping": 91, + "Ping": 70, "Time": 0 }, { - "Name": "MONSTER", + "Name": "canbequit", "Team": "", "Skin": "", "Score": 0, - "Ping": 75, + "Ping": 63, "Time": 0 }, { - "Name": "hard", + "Name": "Onekey", "Team": "", "Skin": "", "Score": 0, - "Ping": 71, + "Ping": 80, "Time": 0 }, { - "Name": "DefectiveVenus80", + "Name": "TNs-HAMOUDI*-*", "Team": "", "Skin": "", "Score": 0, - "Ping": 72, + "Ping": 149, "Time": 0 }, { - "Name": "BACISIKENANIL", + "Name": "FretfulSaltlake73", "Team": "", "Skin": "", "Score": 0, - "Ping": 101, + "Ping": 70, "Time": 0 }, { - "Name": "(LC)arda", + "Name": "yunus", "Team": "", "Skin": "", "Score": 0, - "Ping": 61, + "Ping": 317, "Time": 0 }, { - "Name": "WonderfulMother21", + "Name": "yusuf", "Team": "", "Skin": "", "Score": 0, - "Ping": 53, + "Ping": 78, "Time": 0 }, { - "Name": "EliteAbdomen29", + "Name": "emirx", "Team": "", "Skin": "", "Score": 0, - "Ping": 75, + "Ping": 93, "Time": 0 }, { - "Name": "Zico", + "Name": "SH1WA.&'HOLIGAN", "Team": "", "Skin": "", "Score": 0, - "Ping": 67, + "Ping": 59, "Time": 0 }, { - "Name": "REFLEX", + "Name": "GoodMule52", "Team": "", "Skin": "", "Score": 0, - "Ping": 86, + "Ping": 83, "Time": 0 }, { - "Name": "gangsta", + "Name": "mayback~", "Team": "", "Skin": "", "Score": 0, - "Ping": 86, + "Ping": 68, "Time": 0 }, { - "Name": "60D", + "Name": "MUSTAFA01TAS", "Team": "", "Skin": "", "Score": 0, - "Ping": 88, + "Ping": 151, "Time": 0 }, { - "Name": "#Chivas35", + "Name": "amed21", "Team": "", "Skin": "", "Score": 0, - "Ping": 657, + "Ping": 80, "Time": 0 }, { - "Name": "RuddyThumb92", + "Name": "Kuz3yw", "Team": "", "Skin": "", "Score": 0, - "Ping": 97, + "Ping": 57, "Time": 0 }, { - "Name": "xL99-Pablo", + "Name": "ceren", "Team": "", "Skin": "", "Score": 0, - "Ping": 92, + "Ping": 98, "Time": 0 }, { - "Name": "xL99#Devil", + "Name": "EreN", "Team": "", "Skin": "", "Score": 0, - "Ping": 131, + "Ping": 200, "Time": 0 } ] diff --git a/OpenGSQTests/Results/BattlefieldTests/GetInfoTest.json b/OpenGSQTests/Results/BattlefieldTests/GetInfoTest.json index e55e713..92393dd 100644 --- a/OpenGSQTests/Results/BattlefieldTests/GetInfoTest.json +++ b/OpenGSQTests/Results/BattlefieldTests/GetInfoTest.json @@ -1,22 +1,22 @@ { "Hostname": "[JAH] Warriors #01 - Metro Only - All Weapons - 64 Slots", - "NumPlayers": 39, + "NumPlayers": 48, "MaxPlayers": 64, "GameType": "ConquestLarge0", "Map": "MP_Subway", "RoundsPlayed": 1, "RoundsTotal": 2, "Teams": [ - 1632.8749, - 1388.285 + 1807.8092, + 1949 ], "TargetScore": 0, "Status": "", "Ranked": true, "PunkBuster": true, "Password": false, - "Uptime": 43641, - "RoundTime": 1651, + "Uptime": 55052, + "RoundTime": 464, "IpPort": "94.250.199.214:25200", "PunkBusterVersion": "v1.905 | A1386 C2.352", "JoinQueue": true, diff --git a/OpenGSQTests/Results/BattlefieldTests/GetPlayersTest.json b/OpenGSQTests/Results/BattlefieldTests/GetPlayersTest.json index 4b2405e..5361a9a 100644 --- a/OpenGSQTests/Results/BattlefieldTests/GetPlayersTest.json +++ b/OpenGSQTests/Results/BattlefieldTests/GetPlayersTest.json @@ -1,431 +1,530 @@ [ { - "name": "Bisatiz", + "name": "emaxxrossi", + "guid": "", + "teamId": "2", + "squadId": "7", + "kills": "0", + "deaths": "0", + "score": "0", + "rank": "145", + "ping": "41" + }, + { + "name": "mike12led-GR", "guid": "", "teamId": "1", - "squadId": "3", - "kills": "16", - "deaths": "17", - "score": "8702", - "rank": "58", - "ping": "29" + "squadId": "7", + "kills": "0", + "deaths": "2", + "score": "1600", + "rank": "61", + "ping": "46" }, { - "name": "zKuntur", + "name": "Illuminaty", "guid": "", "teamId": "2", "squadId": "10", - "kills": "50", - "deaths": "15", - "score": "7804", + "kills": "0", + "deaths": "0", + "score": "0", "rank": "145", - "ping": "34" + "ping": "44" }, { - "name": "UbiBaWka", + "name": "Drenwal56", "guid": "", "teamId": "1", + "squadId": "7", + "kills": "1", + "deaths": "4", + "score": "1494", + "rank": "145", + "ping": "22" + }, + { + "name": "D3rSt3ff", + "guid": "", + "teamId": "2", "squadId": "2", - "kills": "10", - "deaths": "10", - "score": "2197", - "rank": "125", - "ping": "43" + "kills": "15", + "deaths": "3", + "score": "5572", + "rank": "145", + "ping": "19" }, { - "name": "x_ToGo_x", + "name": "XxKarmakiller8xX", "guid": "", - "teamId": "1", - "squadId": "4", - "kills": "8", - "deaths": "7", - "score": "4724", + "teamId": "2", + "squadId": "3", + "kills": "17", + "deaths": "4", + "score": "6812", "rank": "145", - "ping": "52" + "ping": "20" }, { - "name": "I-HEB3OPOB-I", + "name": "NIKO76_fr_", "guid": "", "teamId": "1", - "squadId": "4", - "kills": "31", - "deaths": "10", - "score": "15802", + "squadId": "2", + "kills": "3", + "deaths": "5", + "score": "3184", "rank": "145", - "ping": "65535" + "ping": "22" }, { - "name": "Pawel197704", + "name": "Blbendum", "guid": "", "teamId": "2", - "squadId": "10", - "kills": "10", - "deaths": "24", - "score": "7576", - "rank": "28", - "ping": "28" + "squadId": "4", + "kills": "14", + "deaths": "5", + "score": "1718", + "rank": "145", + "ping": "129" }, { - "name": "Gaz_Ranger_28x", + "name": "tuman81", "guid": "", - "teamId": "2", - "squadId": "1", - "kills": "7", - "deaths": "14", - "score": "5772", - "rank": "112", - "ping": "23" + "teamId": "1", + "squadId": "16", + "kills": "2", + "deaths": "1", + "score": "904", + "rank": "145", + "ping": "65535" }, { - "name": "Roma_sibir_55", + "name": "Winipu", "guid": "", "teamId": "1", "squadId": "1", - "kills": "17", - "deaths": "16", - "score": "7330", + "kills": "7", + "deaths": "9", + "score": "3066", "rank": "145", - "ping": "72" + "ping": "14" }, { - "name": "XCelimanX", + "name": "ajn1n", "guid": "", "teamId": "2", - "squadId": "10", - "kills": "5", + "squadId": "5", + "kills": "3", + "deaths": "1", + "score": "980", + "rank": "145", + "ping": "33" + }, + { + "name": "Zenova_1133", + "guid": "", + "teamId": "1", + "squadId": "16", + "kills": "9", "deaths": "5", - "score": "5304", + "score": "4560", "rank": "145", - "ping": "18" + "ping": "25" }, { - "name": "cerberus2500", + "name": "KnockOG", + "guid": "", + "teamId": "1", + "squadId": "6", + "kills": "2", + "deaths": "1", + "score": "2430", + "rank": "14", + "ping": "36" + }, + { + "name": "GTOLE", + "guid": "", + "teamId": "1", + "squadId": "3", + "kills": "1", + "deaths": "2", + "score": "816", + "rank": "145", + "ping": "14" + }, + { + "name": "Sumidanchik", "guid": "", "teamId": "2", "squadId": "3", - "kills": "4", - "deaths": "6", - "score": "3668", - "rank": "95", - "ping": "21" + "kills": "6", + "deaths": "3", + "score": "2598", + "rank": "77", + "ping": "35" }, { - "name": "4uintus", + "name": "CayleyHamilton", "guid": "", "teamId": "2", - "squadId": "4", - "kills": "52", - "deaths": "36", - "score": "10807", + "squadId": "10", + "kills": "2", + "deaths": "1", + "score": "1560", "rank": "145", - "ping": "22" + "ping": "32" }, { - "name": "orel116IL", + "name": "ne0rs", + "guid": "", + "teamId": "1", + "squadId": "10", + "kills": "4", + "deaths": "5", + "score": "960", + "rank": "145", + "ping": "25" + }, + { + "name": "john-ganisa", "guid": "", "teamId": "2", "squadId": "4", - "kills": "10", - "deaths": "16", - "score": "10522", - "rank": "38", - "ping": "57" + "kills": "6", + "deaths": "2", + "score": "1943", + "rank": "48", + "ping": "37" }, { - "name": "uNreal_Niru", + "name": "Wallace1st", "guid": "", - "teamId": "1", + "teamId": "2", "squadId": "4", "kills": "5", - "deaths": "12", - "score": "3670", - "rank": "51", - "ping": "42" + "deaths": "3", + "score": "3238", + "rank": "145", + "ping": "19" }, { - "name": "El_DIVINO91", + "name": "Jesaplegros", "guid": "", - "teamId": "1", - "squadId": "3", - "kills": "33", - "deaths": "25", - "score": "9066", - "rank": "50", - "ping": "112" + "teamId": "2", + "squadId": "0", + "kills": "4", + "deaths": "0", + "score": "1474", + "rank": "145", + "ping": "11" }, { - "name": "Vasya666Vasya", + "name": "Fitaro", "guid": "", - "teamId": "1", - "squadId": "3", - "kills": "7", - "deaths": "11", - "score": "6308", + "teamId": "2", + "squadId": "10", + "kills": "22", + "deaths": "0", + "score": "3100", "rank": "145", - "ping": "62" + "ping": "117" }, { - "name": "MrEgYpTx", + "name": "JoJacksonGER", "guid": "", - "teamId": "1", + "teamId": "2", "squadId": "1", - "kills": "43", - "deaths": "11", - "score": "16084", - "rank": "72", - "ping": "80" + "kills": "2", + "deaths": "4", + "score": "1138", + "rank": "145", + "ping": "22" }, { - "name": "laylay73", + "name": "MECdonaldxx", "guid": "", "teamId": "2", - "squadId": "4", - "kills": "17", - "deaths": "21", - "score": "10212", - "rank": "145", - "ping": "107" + "squadId": "2", + "kills": "4", + "deaths": "6", + "score": "2688", + "rank": "46", + "ping": "196" }, { - "name": "tecnoden", + "name": "Pascal19601961", "guid": "", - "teamId": "1", - "squadId": "1", - "kills": "17", - "deaths": "20", - "score": "11802", + "teamId": "2", + "squadId": "9", + "kills": "2", + "deaths": "0", + "score": "3394", "rank": "145", - "ping": "58" + "ping": "34" }, { - "name": "DJOstice", + "name": "Chaossx52", "guid": "", "teamId": "1", - "squadId": "5", - "kills": "27", - "deaths": "13", - "score": "7410", - "rank": "145", - "ping": "25" + "squadId": "6", + "kills": "0", + "deaths": "4", + "score": "220", + "rank": "105", + "ping": "62" }, { - "name": "Troldemort", + "name": "IKillYouAll42", "guid": "", - "teamId": "2", - "squadId": "3", - "kills": "8", - "deaths": "16", - "score": "3954", - "rank": "96", - "ping": "17" + "teamId": "1", + "squadId": "5", + "kills": "12", + "deaths": "8", + "score": "5664", + "rank": "134", + "ping": "15" }, { - "name": "Googlefaul", + "name": "jeanporte11", "guid": "", "teamId": "1", "squadId": "5", - "kills": "72", - "deaths": "13", - "score": "11361", - "rank": "73", - "ping": "104" + "kills": "4", + "deaths": "6", + "score": "3136", + "rank": "13", + "ping": "162" }, { - "name": "Loloppopsossi786", + "name": "da3333", "guid": "", "teamId": "1", - "squadId": "1", - "kills": "5", - "deaths": "5", - "score": "2872", - "rank": "68", - "ping": "22" + "squadId": "7", + "kills": "1", + "deaths": "7", + "score": "1274", + "rank": "51", + "ping": "25" }, { - "name": "InFiniTy_ZarKaM", + "name": "Mikey_Maaitjie", "guid": "", "teamId": "2", - "squadId": "2", - "kills": "21", - "deaths": "15", - "score": "8916", - "rank": "42", - "ping": "41" + "squadId": "7", + "kills": "2", + "deaths": "3", + "score": "509", + "rank": "64", + "ping": "177" }, { - "name": "duisendpot", + "name": "7amada2211", "guid": "", "teamId": "2", - "squadId": "2", - "kills": "4", - "deaths": "10", - "score": "1992", - "rank": "89", - "ping": "38" + "squadId": "10", + "kills": "0", + "deaths": "1", + "score": "0", + "rank": "145", + "ping": "10" }, { - "name": "tamirmichael", + "name": "BurraESP", + "guid": "", + "teamId": "1", + "squadId": "5", + "kills": "1", + "deaths": "3", + "score": "524", + "rank": "46", + "ping": "31" + }, + { + "name": "HannoWar", "guid": "", "teamId": "2", "squadId": "2", "kills": "1", - "deaths": "5", - "score": "1914", - "rank": "69", - "ping": "24" + "deaths": "2", + "score": "2752", + "rank": "145", + "ping": "25" }, { - "name": "sleepwalker7474", + "name": "Crawfy2D", "guid": "", "teamId": "2", - "squadId": "10", - "kills": "14", - "deaths": "11", - "score": "7634", + "squadId": "2", + "kills": "9", + "deaths": "4", + "score": "3660", "rank": "145", - "ping": "33" + "ping": "15" }, { - "name": "cf9b1fc3a0c91d4d", + "name": "kazak150rus", + "guid": "", + "teamId": "2", + "squadId": "3", + "kills": "4", + "deaths": "0", + "score": "1752", + "rank": "145", + "ping": "34" + }, + { + "name": "Hoffi62", "guid": "", "teamId": "1", "squadId": "5", "kills": "2", - "deaths": "5", - "score": "2232", - "rank": "77", - "ping": "38" + "deaths": "1", + "score": "1156", + "rank": "94", + "ping": "8" }, { - "name": "-0_KzG_0-", + "name": "Kudlacz07", + "guid": "", + "teamId": "2", + "squadId": "4", + "kills": "15", + "deaths": "4", + "score": "7344", + "rank": "93", + "ping": "30" + }, + { + "name": "MyFaultReally", "guid": "", "teamId": "2", "squadId": "3", "kills": "3", - "deaths": "2", - "score": "660", - "rank": "51", - "ping": "16" + "deaths": "3", + "score": "1168", + "rank": "11", + "ping": "75" }, { - "name": "0317Mo_Yan", + "name": "Daw94111", "guid": "", - "teamId": "2", + "teamId": "1", "squadId": "2", - "kills": "3", - "deaths": "4", - "score": "1290", - "rank": "1", - "ping": "38" + "kills": "4", + "deaths": "2", + "score": "1180", + "rank": "110", + "ping": "19" }, { - "name": "BlackDistrict_PL", + "name": "Kasztanica00", "guid": "", "teamId": "1", - "squadId": "4", - "kills": "8", + "squadId": "1", + "kills": "1", "deaths": "5", - "score": "2402", - "rank": "128", - "ping": "44" + "score": "462", + "rank": "12", + "ping": "32" }, { - "name": "MrMacPhisto2501", + "name": "kerel29", "guid": "", - "teamId": "2", - "squadId": "4", - "kills": "13", - "deaths": "9", - "score": "4614", + "teamId": "1", + "squadId": "7", + "kills": "3", + "deaths": "4", + "score": "1386", "rank": "145", - "ping": "47" + "ping": "14" }, { - "name": "JoJacksonGER", + "name": "hawk_it24", "guid": "", - "teamId": "2", - "squadId": "3", - "kills": "6", - "deaths": "3", - "score": "1560", - "rank": "145", - "ping": "20" + "teamId": "1", + "squadId": "16", + "kills": "1", + "deaths": "1", + "score": "1566", + "rank": "27", + "ping": "27" }, { - "name": "Fryer42", + "name": "NaseHD", "guid": "", "teamId": "2", - "squadId": "1", + "squadId": "13", "kills": "0", "deaths": "0", "score": "0", - "rank": "108", - "ping": "21" + "rank": "145", + "ping": "8" }, { - "name": "GianCarco", + "name": "awodh-2012", "guid": "", "teamId": "1", - "squadId": "2", - "kills": "0", - "deaths": "4", - "score": "140", - "rank": "113", - "ping": "32" + "squadId": "16", + "kills": "17", + "deaths": "0", + "score": "5682", + "rank": "77", + "ping": "105" }, { - "name": "Azerbaidschan", + "name": "LyrArc", "guid": "", "teamId": "2", "squadId": "1", - "kills": "3", + "kills": "2", "deaths": "0", - "score": "848", - "rank": "145", - "ping": "13" + "score": "2186", + "rank": "74", + "ping": "12" }, { - "name": "Flyguy21jager", + "name": "BruceV14", "guid": "", "teamId": "1", - "squadId": "2", - "kills": "0", - "deaths": "1", - "score": "280", - "rank": "145", - "ping": "65535" + "squadId": "10", + "kills": "5", + "deaths": "2", + "score": "2970", + "rank": "132", + "ping": "31" }, { - "name": "jcpresas", + "name": "SalehElsayed", "guid": "", - "teamId": "2", - "squadId": "1", - "kills": "0", - "deaths": "0", - "score": "1040", - "rank": "145", - "ping": "40" + "teamId": "1", + "squadId": "10", + "kills": "5", + "deaths": "1", + "score": "2938", + "rank": "35", + "ping": "63" }, { - "name": "9032b57a6b49f900", + "name": "SEF-CONDOR", "guid": "", "teamId": "1", "squadId": "2", - "kills": "1", - "deaths": "1", - "score": "200", + "kills": "4", + "deaths": "4", + "score": "1144", "rank": "145", - "ping": "29" + "ping": "26" }, { - "name": "manara033", + "name": "EricIN", "guid": "", - "teamId": "0", - "squadId": "0", + "teamId": "1", + "squadId": "1", "kills": "0", - "deaths": "0", - "score": "0", - "rank": "145", - "ping": "65535" + "deaths": "2", + "score": "640", + "rank": "67", + "ping": "105" } ] \ No newline at end of file diff --git a/OpenGSQTests/Results/Doom3Tests/GetInfoTest.json b/OpenGSQTests/Results/Doom3Tests/GetInfoTest.json index cfd140a..781c473 100644 --- a/OpenGSQTests/Results/Doom3Tests/GetInfoTest.json +++ b/OpenGSQTests/Results/Doom3Tests/GetInfoTest.json @@ -32,14 +32,13 @@ "si_antiLag": "1", "bot_enable": "1", "gamename": "baseETQW-1", - "si_campaign": "campaign_northeurope", - "si_map": "maps/quarry.entities", - "si_campaignInfo": "", + "si_campaign": "campaign_pacific", + "si_map": "maps/canyon.entities", "players": [ { "id": 0, "ping": 0, - "name": "NOSFERATU", + "name": "WAT|infected_remnants", "clantag_pos": 0, "clantag": "", "typeflag": 1 @@ -47,74 +46,90 @@ { "id": 1, "ping": 0, - "name": "flower.tube", + "name": "iceT-bag", "clantag_pos": 0, "clantag": "", "typeflag": 1 }, { - "id": 2, + "id": 3, "ping": 0, - "name": "rumpleforeskin", + "name": "Boss_Tweed", "clantag_pos": 0, "clantag": "", "typeflag": 1 }, { - "id": 3, + "id": 4, "ping": 0, - "name": "NoobMcBoob", + "name": "CTZN Kane", "clantag_pos": 0, "clantag": "", "typeflag": 1 }, { - "id": 4, - "ping": 100, - "name": "Player____", + "id": 5, + "ping": 0, + "name": "FannyPack", "clantag_pos": 0, "clantag": "", - "typeflag": 0 + "typeflag": 1 }, { - "id": 10, + "id": 6, "ping": 0, - "name": "HaltHammerzeit", + "name": "Kettle", "clantag_pos": 0, "clantag": "", "typeflag": 1 }, { - "id": 11, + "id": 7, "ping": 0, - "name": "NiceLagSwitch", + "name": "HaltHammerzeit", "clantag_pos": 0, "clantag": "", "typeflag": 1 }, { - "id": 12, + "id": 8, "ping": 0, - "name": "STFUandDIE", + "name": "NOSFERATU", "clantag_pos": 0, "clantag": "", "typeflag": 1 }, { - "id": 13, + "id": 9, "ping": 0, - "name": "FannyPack", + "name": "Gumbii", "clantag_pos": 0, "clantag": "", "typeflag": 1 }, { - "id": 14, + "id": 10, + "ping": 61, + "name": "Konkwista", + "clantag_pos": 0, + "clantag": "", + "typeflag": 0 + }, + { + "id": 11, "ping": 0, - "name": "Bad Hombre", + "name": "Vlad_Putimir", "clantag_pos": 0, "clantag": "", "typeflag": 1 + }, + { + "id": 12, + "ping": 36, + "name": "WARRIOR______", + "clantag_pos": 0, + "clantag": "", + "typeflag": 0 } ] } \ No newline at end of file diff --git a/OpenGSQTests/Results/EOSTests/GetInfoTest.json b/OpenGSQTests/Results/EOSTests/GetInfoTest.json index 85cbfcf..2ac4aaf 100644 --- a/OpenGSQTests/Results/EOSTests/GetInfoTest.json +++ b/OpenGSQTests/Results/EOSTests/GetInfoTest.json @@ -15,8 +15,8 @@ "rejoinAfterKick": "", "platforms": null }, - "totalPlayers": 49, - "openPublicPlayers": 21, + "totalPlayers": 39, + "openPublicPlayers": 31, "publicPlayers": [], "started": false, "lastUpdated": null, @@ -29,11 +29,11 @@ "SERVERPASSWORD_b": false, "MATCHTIMEOUT_d": 120.0, "ENABLEDMODSFILEIDS_s": "4979340", - "DAYTIME_s": "312", + "DAYTIME_s": "327", "SOTFMATCHSTARTED_b": false, "STEELSHIELDENABLED_l": 1, "SERVERUSESBATTLEYE_b": true, - "EOSSERVERPING_l": 313, + "EOSSERVERPING_l": 252, "ALLOWDOWNLOADCHARS_l": 1, "OFFICIALSERVER_s": "1", "GAMEMODE_s": "TestGameMode_C", diff --git a/OpenGSQTests/Results/FiveMTests/GetDynamicTest.json b/OpenGSQTests/Results/FiveMTests/GetDynamicTest.json index d19112a..af2b2b0 100644 --- a/OpenGSQTests/Results/FiveMTests/GetDynamicTest.json +++ b/OpenGSQTests/Results/FiveMTests/GetDynamicTest.json @@ -1,8 +1,8 @@ { - "clients": 0, + "clients": 4, "gametype": "Roleplay", "hostname": "^3Popcorn Roleplay \uD83C\uDF7F ^7| Player Driven Roleplay! Player-run Economy, Restaurants, Mechanic Shops with custom crafting, 70+ Custom Weapons, Custom Cars, custom businesses, and endless possibilities!", - "iv": "1203673699", + "iv": "204245275", "mapname": "Los_Santos", "sv_maxclients": "64" } \ No newline at end of file diff --git a/OpenGSQTests/Results/FiveMTests/GetInfoTest.json b/OpenGSQTests/Results/FiveMTests/GetInfoTest.json index 509df15..f4086cf 100644 --- a/OpenGSQTests/Results/FiveMTests/GetInfoTest.json +++ b/OpenGSQTests/Results/FiveMTests/GetInfoTest.json @@ -125,7 +125,6 @@ "FranklinHousefix", "freedom_tower", "Gatto_WorkShopLA", - "glowpalms", "qb-prison", "xtxvxtx_prop_disabler", "laundry", @@ -359,5 +358,5 @@ "tags": "Roleplay, Casual, Economy, LSPD, EMS, Gangs, Cars, Motorcycles, Secrets, qbx_core, gunplay, Customs, Crime, territories, semi-serious, original, qbxcore", "txAdmin-version": "6.0.2" }, - "version": 1203673699 + "version": 204245275 } \ No newline at end of file diff --git a/OpenGSQTests/Results/FiveMTests/GetPlayersTest.json b/OpenGSQTests/Results/FiveMTests/GetPlayersTest.json index 0637a08..53d8ba4 100644 --- a/OpenGSQTests/Results/FiveMTests/GetPlayersTest.json +++ b/OpenGSQTests/Results/FiveMTests/GetPlayersTest.json @@ -1 +1,56 @@ -[] \ No newline at end of file +[ + { + "endpoint": "127.0.0.1", + "id": 2, + "identifiers": [ + "license:f2791635dc281679e2c111054792bf8c5502afc6", + "xbl:2535472678279323", + "live:985154577587668", + "discord:964914608206921879", + "fivem:10447649", + "license2:f2791635dc281679e2c111054792bf8c5502afc6" + ], + "name": "joe", + "ping": 84 + }, + { + "endpoint": "127.0.0.1", + "id": 5, + "identifiers": [ + "license:bbada5b121e84819b01cd58d0ec7c108c10a3355", + "discord:754206775074357280", + "fivem:7299594", + "license2:28d05a915e18844d446a7c9feb54ddbfd8147069" + ], + "name": "Malva", + "ping": 93 + }, + { + "endpoint": "127.0.0.1", + "id": 6, + "identifiers": [ + "license:feef646718d2283c786d9d1377decd3b4ee45e63", + "xbl:2535405211024165", + "live:844428391057578", + "discord:759117825481900084", + "fivem:8999311", + "license2:a7ce2d61a2c4f61fb19cd7d845cede4c708b8580" + ], + "name": "Mswubz", + "ping": 39 + }, + { + "endpoint": "127.0.0.1", + "id": 7, + "identifiers": [ + "license:546a58dd390002fe6fdda16d63c1dbfef0942431", + "xbl:2535450452952571", + "live:985154013491421", + "discord:694662759593410601", + "fivem:2598523", + "license2:2a29c36aeb15fcb1cd471252df5367fc3cc0c783" + ], + "name": "YOU", + "ping": 40 + } +] \ No newline at end of file diff --git a/OpenGSQTests/Results/GameSpy1Tests/GetInfoTest.json b/OpenGSQTests/Results/GameSpy1Tests/GetInfoTest.json index 9dedde6..c571bd0 100644 --- a/OpenGSQTests/Results/GameSpy1Tests/GetInfoTest.json +++ b/OpenGSQTests/Results/GameSpy1Tests/GetInfoTest.json @@ -1,10 +1,10 @@ { "hostname": " --- ComboGib CTF (Grapple) -- London --- EatSleepUT.com", "hostport": "7777", - "maptitle": "|-Vp-| FragWhoreArena", - "mapname": "CTF-(Vp)FragWhore[ZPC]", + "maptitle": "FRAG WHORE FAST ATTACK BY BULBAFLEX", + "mapname": "CTF-((-FragWhore-FastAttack-V2))", "gametype": "CTFGame", - "numplayers": "12", + "numplayers": "18", "maxplayers": "18", "gamemode": "openplaying", "gamever": "469", diff --git a/OpenGSQTests/Results/GameSpy1Tests/GetPlayersTest.json b/OpenGSQTests/Results/GameSpy1Tests/GetPlayersTest.json index 5a39815..70b82a3 100644 --- a/OpenGSQTests/Results/GameSpy1Tests/GetPlayersTest.json +++ b/OpenGSQTests/Results/GameSpy1Tests/GetPlayersTest.json @@ -1,28 +1,48 @@ [ { - "player": "H3Lc@T", - "frags": "35", - "ping": " 135", + "player": "John_Cutter", + "frags": "0", + "ping": " 33", + "team": "0", + "mesh": "Male Soldier", + "skin": "SoldierSkins.hkil", + "face": "SoldierSkins.vector", + "ngsecret": "true" + }, + { + "player": "B888M", + "frags": "4", + "ping": " 80", "team": "0", + "mesh": "Male Soldier", + "skin": "SoldierSkins.sldr", + "face": "SoldierSkins.Brock", + "ngsecret": "true" + }, + { + "player": "mino", + "frags": "38", + "ping": " 61", + "team": "1", "mesh": "Female Soldier", - "skin": "SGirlSkins.fbth", - "face": "SGirlSkins.Annaka", + "skin": "SGirlSkins.Garf", + "face": "SGirlSkins.Isis", "ngsecret": "true" }, { - "player": "Pacman", - "frags": "75", - "ping": " 35", + "player": "SonOfSam", + "frags": "68", + "ping": " 46", "team": "1", "mesh": "Male Soldier", - "skin": "SoldierSkins.Blkt", - "face": "SoldierSkins.Malcom", + "skin": "SoldierSkins.hkil", + "face": "SoldierSkins.matrix", "ngsecret": "true" }, { - "player": "UTNL", - "frags": "402", - "ping": " 164", + "player": "pape.ruthless", + "frags": "52", + "ping": " 43", "team": "0", "mesh": "Male Commando", "skin": "CommandoSkins.daco", @@ -30,39 +50,49 @@ "ngsecret": "true" }, { - "player": "BV", - "frags": "200", - "ping": " 82", + "player": "gzm", + "frags": "67", + "ping": " 34", "team": "1", - "mesh": "Male Soldier", - "skin": "SoldierSkins.hkil", - "face": "SoldierSkins.vector", + "mesh": "Female Soldier", + "skin": "SGirlSkins.Army", + "face": "SGirlSkins.Shyann", "ngsecret": "true" }, { - "player": "MAD", - "frags": "202", - "ping": " 43", + "player": "Fe", + "frags": "152", + "ping": " 31", "team": "0", - "mesh": "", - "skin": "SoldierSkins.Blkt", - "face": "SoldierSkins.", + "mesh": "Female Soldier", + "skin": "SGirlSkins.Garf", + "face": "SGirlSkins.Isis", "ngsecret": "true" }, { - "player": "wish_me_luck", - "frags": "0", - "ping": " 38", - "team": "255", - "mesh": "Spectator", - "skin": "None", - "face": "", + "player": "The.R", + "frags": "83", + "ping": " 57", + "team": "1", + "mesh": "Male Soldier", + "skin": "SoldierSkins.hkil", + "face": "SoldierSkins.matrix", + "ngsecret": "true" + }, + { + "player": "___", + "frags": "107", + "ping": " 33", + "team": "0", + "mesh": "Male Commando", + "skin": "CommandoSkins.cmdo", + "face": "CommandoSkins.Blake", "ngsecret": "true" }, { "player": "wpxc", - "frags": "187", - "ping": " 52", + "frags": "8", + "ping": " 56", "team": "0", "mesh": "Male Soldier", "skin": "SoldierSkins.Gard", @@ -70,9 +100,9 @@ "ngsecret": "true" }, { - "player": "ego", + "player": "wish_me_luck", "frags": "0", - "ping": " 110", + "ping": " 51", "team": "255", "mesh": "Spectator", "skin": "None", @@ -80,53 +110,73 @@ "ngsecret": "true" }, { - "player": ":Dugly", - "frags": "372", - "ping": " 42", + "player": "Snakefinger", + "frags": "39", + "ping": " 242", "team": "1", - "mesh": "Female Commando", - "skin": "FCommandoSkins.daco", - "face": "FCommandoSkins.Tanya", + "mesh": "Male Commando", + "skin": "CommandoSkins.daco", + "face": "CommandoSkins.Graves", "ngsecret": "true" }, { - "player": "shmoo", - "frags": "258", - "ping": " 46", + "player": "Doc_Gaylord", + "frags": "54", + "ping": " 284", "team": "1", - "mesh": "Female Soldier", - "skin": "SGirlSkins.fwar", - "face": "SGirlSkins.Cathode", + "mesh": "Male Commando", + "skin": "CommandoSkins.goth", + "face": "CommandoSkins.Grail", "ngsecret": "true" }, { - "player": "Peter", - "frags": "654", - "ping": " 15", + "player": "period", + "frags": "108", + "ping": " 39", "team": "0", + "mesh": "Female Soldier", + "skin": "SGirlSkins.Garf", + "face": "SGirlSkins.Vixen", + "ngsecret": "true" + }, + { + "player": "effibrie", + "frags": "64", + "ping": " 57", + "team": "1", "mesh": "Male Soldier", - "skin": "SoldierSkins.Blkt", - "face": "SoldierSkins.Malcom", + "skin": "SoldierSkins.sldr", + "face": "SoldierSkins.Harlin", "ngsecret": "true" }, { - "player": "nitro", - "frags": "302", - "ping": " 42", + "player": "dickfish.umx", + "frags": "125", + "ping": " 51", "team": "1", - "mesh": "Boss", - "skin": "BossSkins.boss", - "face": "BossSkins.T_1", + "mesh": "Male Soldier", + "skin": "SoldierSkins.hkil", + "face": "SoldierSkins.matrix", "ngsecret": "true" }, { - "player": "��ul~C�llect�r", - "frags": "494", - "ping": " 90", + "player": "Pomzie", + "frags": "57", + "ping": " 53", "team": "0", - "mesh": "", + "mesh": "Female Soldier", + "skin": "SGirlSkins.fbth", + "face": "SGirlSkins.Annaka", + "ngsecret": "true" + }, + { + "player": "creep", + "frags": "191", + "ping": " 51", + "team": "0", + "mesh": "Female Commando", "skin": "FCommandoSkins.goth", - "face": "FCommandoSkins.Freylis", + "face": "FCommandoSkins.Visse", "ngsecret": "true" } ] \ No newline at end of file diff --git a/OpenGSQTests/Results/GameSpy1Tests/GetStatusTest.json b/OpenGSQTests/Results/GameSpy1Tests/GetStatusTest.json index 3afe937..8badf00 100644 --- a/OpenGSQTests/Results/GameSpy1Tests/GetStatusTest.json +++ b/OpenGSQTests/Results/GameSpy1Tests/GetStatusTest.json @@ -7,10 +7,10 @@ "location": "0", "hostname": " --- ComboGib CTF (Grapple) -- London --- EatSleepUT.com", "hostport": "7777", - "maptitle": "|-Vp-| FragWhoreArena", - "mapname": "CTF-(Vp)FragWhore[ZPC]", + "maptitle": "FRAG WHORE FAST ATTACK BY BULBAFLEX", + "mapname": "CTF-((-FragWhore-FastAttack-V2))", "gametype": "CTFGame", - "numplayers": "15", + "numplayers": "18", "maxplayers": "18", "gamemode": "openplaying", "worldlog": "false", @@ -34,29 +34,59 @@ }, "Players": [ { - "player": "H3Lc@T", - "frags": "35", - "ping": " 136", + "player": "Freyja", + "frags": "0", + "ping": " 184", + "team": "1", + "mesh": "Female Commando", + "skin": "FCommandoSkins.aphe", + "face": "FCommandoSkins.Indina", + "ngsecret": "true" + }, + { + "player": "John_Cutter", + "frags": "0", + "ping": " 90", "team": "0", + "mesh": "Male Soldier", + "skin": "SoldierSkins.hkil", + "face": "SoldierSkins.vector", + "ngsecret": "true" + }, + { + "player": "B888M", + "frags": "2", + "ping": " 85", + "team": "0", + "mesh": "Male Soldier", + "skin": "SoldierSkins.sldr", + "face": "SoldierSkins.Brock", + "ngsecret": "true" + }, + { + "player": "mino", + "frags": "37", + "ping": " 56", + "team": "1", "mesh": "Female Soldier", - "skin": "SGirlSkins.fbth", - "face": "SGirlSkins.Annaka", + "skin": "SGirlSkins.Garf", + "face": "SGirlSkins.Isis", "ngsecret": "true" }, { - "player": "Pacman", - "frags": "75", - "ping": " 37", + "player": "SonOfSam", + "frags": "66", + "ping": " 109", "team": "1", "mesh": "Male Soldier", - "skin": "SoldierSkins.Blkt", - "face": "SoldierSkins.Malcom", + "skin": "SoldierSkins.hkil", + "face": "SoldierSkins.matrix", "ngsecret": "true" }, { - "player": "UTNL", - "frags": "402", - "ping": " 163", + "player": "pape.ruthless", + "frags": "47", + "ping": " 229", "team": "0", "mesh": "Male Commando", "skin": "CommandoSkins.daco", @@ -64,49 +94,49 @@ "ngsecret": "true" }, { - "player": "BV", - "frags": "200", - "ping": " 94", + "player": "gzm", + "frags": "66", + "ping": " 34", "team": "1", - "mesh": "Male Soldier", - "skin": "SoldierSkins.hkil", - "face": "SoldierSkins.vector", + "mesh": "Female Soldier", + "skin": "SGirlSkins.Army", + "face": "SGirlSkins.Shyann", "ngsecret": "true" }, { - "player": "crTz^", - "frags": "296", - "ping": " 48", - "team": "1", - "mesh": "", - "skin": "SoldierSkins.Gard", - "face": "SoldierSkins.Wraith", + "player": "Fe", + "frags": "145", + "ping": " 34", + "team": "0", + "mesh": "Female Soldier", + "skin": "SGirlSkins.Garf", + "face": "SGirlSkins.Isis", "ngsecret": "true" }, { - "player": "MAD", - "frags": "202", - "ping": " 49", - "team": "0", - "mesh": "", - "skin": "SoldierSkins.Blkt", - "face": "SoldierSkins.", + "player": "The.R", + "frags": "71", + "ping": " 185", + "team": "1", + "mesh": "Male Soldier", + "skin": "SoldierSkins.hkil", + "face": "SoldierSkins.matrix", "ngsecret": "true" }, { - "player": "wish_me_luck", - "frags": "0", - "ping": " 38", - "team": "255", - "mesh": "Spectator", - "skin": "None", - "face": "", + "player": "___", + "frags": "94", + "ping": " 35", + "team": "0", + "mesh": "Male Commando", + "skin": "CommandoSkins.cmdo", + "face": "CommandoSkins.Blake", "ngsecret": "true" }, { "player": "wpxc", - "frags": "187", - "ping": " 51", + "frags": "8", + "ping": " 58", "team": "0", "mesh": "Male Soldier", "skin": "SoldierSkins.Gard", @@ -114,73 +144,73 @@ "ngsecret": "true" }, { - "player": "ego", - "frags": "0", - "ping": " 99", - "team": "255", - "mesh": "Spectator", - "skin": "None", - "face": "", - "ngsecret": "true" - }, - { - "player": ":Dugly", - "frags": "372", - "ping": " 45", + "player": "Snakefinger", + "frags": "35", + "ping": " 253", "team": "1", - "mesh": "Female Commando", - "skin": "FCommandoSkins.daco", - "face": "FCommandoSkins.Tanya", + "mesh": "Male Commando", + "skin": "CommandoSkins.daco", + "face": "CommandoSkins.Graves", "ngsecret": "true" }, { - "player": "DAz", - "frags": "295", - "ping": " 238", + "player": "Doc_Gaylord", + "frags": "44", + "ping": " 161", "team": "1", "mesh": "Male Commando", - "skin": "CommandoSkins.cmdo", - "face": "CommandoSkins.Blake", + "skin": "CommandoSkins.goth", + "face": "CommandoSkins.Grail", "ngsecret": "true" }, { - "player": "shmoo", - "frags": "258", - "ping": " 45", - "team": "1", + "player": "period", + "frags": "98", + "ping": " 123", + "team": "0", "mesh": "Female Soldier", - "skin": "SGirlSkins.fwar", - "face": "SGirlSkins.Cathode", + "skin": "SGirlSkins.Garf", + "face": "SGirlSkins.Vixen", "ngsecret": "true" }, { - "player": "Peter", - "frags": "654", - "ping": " 19", - "team": "0", + "player": "effibrie", + "frags": "63", + "ping": " 56", + "team": "1", "mesh": "Male Soldier", - "skin": "SoldierSkins.Blkt", - "face": "SoldierSkins.Malcom", + "skin": "SoldierSkins.sldr", + "face": "SoldierSkins.Harlin", "ngsecret": "true" }, { - "player": "nitro", - "frags": "302", - "ping": " 47", + "player": "dickfish.umx", + "frags": "103", + "ping": " 52", "team": "1", - "mesh": "Boss", - "skin": "BossSkins.boss", - "face": "BossSkins.T_1", + "mesh": "Male Soldier", + "skin": "SoldierSkins.hkil", + "face": "SoldierSkins.matrix", + "ngsecret": "true" + }, + { + "player": "Pomzie", + "frags": "57", + "ping": " 55", + "team": "0", + "mesh": "Female Soldier", + "skin": "SGirlSkins.fbth", + "face": "SGirlSkins.Annaka", "ngsecret": "true" }, { - "player": "��ul~C�llect�r", - "frags": "494", - "ping": " 93", + "player": "creep", + "frags": "185", + "ping": " 51", "team": "0", - "mesh": "", + "mesh": "Female Commando", "skin": "FCommandoSkins.goth", - "face": "FCommandoSkins.Freylis", + "face": "FCommandoSkins.Visse", "ngsecret": "true" } ] diff --git a/OpenGSQTests/Results/GameSpy1Tests/GetTeamsTest.json b/OpenGSQTests/Results/GameSpy1Tests/GetTeamsTest.json index e62afc8..b2d289e 100644 --- a/OpenGSQTests/Results/GameSpy1Tests/GetTeamsTest.json +++ b/OpenGSQTests/Results/GameSpy1Tests/GetTeamsTest.json @@ -1,13 +1,13 @@ [ { "team": "Red", - "score": "6.000000", - "size": "6" + "score": "2.000000", + "size": "9" }, { "team": "Blue", "score": "2.000000", - "size": "5" + "size": "8" }, { "team": "Green", diff --git a/OpenGSQTests/Results/GameSpy2Tests/GetStatusTest.json b/OpenGSQTests/Results/GameSpy2Tests/GetStatusTest.json index af2a62f..b8bb283 100644 --- a/OpenGSQTests/Results/GameSpy2Tests/GetStatusTest.json +++ b/OpenGSQTests/Results/GameSpy2Tests/GetStatusTest.json @@ -2,11 +2,11 @@ "Info": { "hostname": "*Easy Prey/Death*", "hostport": "15567", - "mapname": "Flaming Dart [Extra Vehicles] -SSM-", + "mapname": "Irving [Extra Vehicles] -SSM-", "gametype": "coop", - "numplayers": "8", + "numplayers": "4", "maxplayers": "50", - "gamemode": "openplaying", + "gamemode": "pre", "password": "0", "gamever": "v1.21", "dedicated": "2", @@ -47,78 +47,46 @@ }, "Players": [ { - "player": "Hoang Huynh", - "score": "10", - "deaths": "3", - "ping": "238", - "team": "2", - "kills": "11" - }, - { - "player": "VKHD Player", - "score": "15", - "deaths": "2", - "ping": "108", - "team": "2", - "kills": "12" - }, - { - "player": "Tyme Bulm", - "score": "9", + "player": "Ka", + "score": "0", "deaths": "0", - "ping": "19", + "ping": "175", "team": "1", - "kills": "4" + "kills": "0" }, { - "player": "jon", - "score": "19", - "deaths": "4", - "ping": "67", + "player": "WR", + "score": "0", + "deaths": "0", + "ping": "139", "team": "1", - "kills": "11" + "kills": "0" }, { - "player": "gooodie boi", - "score": "2", - "deaths": "4", - "ping": "121", + "player": "pinky", + "score": "0", + "deaths": "0", + "ping": "32", "team": "2", - "kills": "3" - }, - { - "player": "str1ker", - "score": "3", - "deaths": "5", - "ping": "183", - "team": "1", - "kills": "5" - }, - { - "player": "Santa", - "score": "3", - "deaths": "5", - "ping": "110", - "team": "1", - "kills": "3" + "kills": "0" }, { "player": "Hannibal", - "score": "9", - "deaths": "2", - "ping": "149", - "team": "2", - "kills": "6" + "score": "0", + "deaths": "0", + "ping": "112", + "team": "1", + "kills": "0" } ], "Teams": [ { "team": "red", - "tickets": "770" + "tickets": "846" }, { "team": "blue", - "tickets": "536" + "tickets": "846" } ] } \ No newline at end of file diff --git a/OpenGSQTests/Results/GameSpy3Tests/GetStatusTest.json b/OpenGSQTests/Results/GameSpy3Tests/GetStatusTest.json index 67247f0..b7a8de9 100644 --- a/OpenGSQTests/Results/GameSpy3Tests/GetStatusTest.json +++ b/OpenGSQTests/Results/GameSpy3Tests/GetStatusTest.json @@ -3,10 +3,10 @@ "hostname": "2F4Y.com - Best Maps No Rules!", "gamename": "battlefield2", "gamever": "1.5.3153-802.0", - "mapname": "FuShe Pass", + "mapname": "Sharqi Peninsula", "gametype": "gpm_cq", "gamevariant": "bf2", - "numplayers": "62", + "numplayers": "60", "maxplayers": "64", "gamemode": "openplaying", "password": "0", @@ -32,7 +32,7 @@ "bf2_scorelimit": "0", "bf2_ticketratio": "100", "bf2_teamratio": "100.000000", - "bf2_team1": "CH", + "bf2_team1": "MEC", "bf2_team2": "US", "bf2_bots": "0", "bf2_pure": "1", @@ -48,599 +48,519 @@ }, "Players": [ { - "player": "GooD_KnifE_SpeeD", - "score": "6", + "player": "UA Shunya|Kh", + "score": "7", "ping": "38", "team": "2", - "deaths": "0", - "pid": "46687128", + "deaths": "1", + "pid": "190086892", "skill": "3", "AIBot": "0" }, { - "player": "Nenadst", - "score": "2", - "ping": "36", + "player": "Ever Alinka", + "score": "7", + "ping": "73", "team": "1", "deaths": "0", - "pid": "500286203", - "skill": "1", + "pid": "500367653", + "skill": "0", "AIBot": "0" }, { - "player": "Enis505", - "score": "2", - "ping": "39", - "team": "1", + "player": "Geo TsKyyy", + "score": "6", + "ping": "69", + "team": "2", "deaths": "0", - "pid": "500327194", - "skill": "1", + "pid": "500120160", + "skill": "3", "AIBot": "0" }, { - "player": "vvv899", - "score": "2", - "ping": "45", - "team": "1", + "player": "Kapacb1", + "score": "6", + "ping": "42", + "team": "2", "deaths": "0", - "pid": "104288609", - "skill": "1", + "pid": "66401801", + "skill": "3", "AIBot": "0" }, { - "player": "olegas olegass", - "score": "2", - "ping": "45", + "player": "201! Hot_player", + "score": "5", + "ping": "90", "team": "1", - "deaths": "0", - "pid": "124960311", - "skill": "0", + "deaths": "1", + "pid": "500320400", + "skill": "1", "AIBot": "0" }, { - "player": "ibrahem22a2002", - "score": "0", - "ping": "96", + "player": "Capra_hircus", + "score": "4", + "ping": "33", "team": "2", "deaths": "0", - "pid": "500588874", - "skill": "0", + "pid": "500484370", + "skill": "2", "AIBot": "0" }, { - "player": "***rey_santos***", - "score": "0", - "ping": "265", - "team": "1", - "deaths": "0", - "pid": "500019708", - "skill": "0", + "player": "DzNts CroZZFir3", + "score": "4", + "ping": "9", + "team": "2", + "deaths": "1", + "pid": "229552298", + "skill": "2", "AIBot": "0" }, { - "player": "andreyder9271", - "score": "0", - "ping": "39", + "player": "Portweingenossen", + "score": "4", + "ping": "43", "team": "1", "deaths": "0", - "pid": "500501238", - "skill": "0", + "pid": "500117676", + "skill": "1", "AIBot": "0" }, { - "player": "pichula_gorda", - "score": "0", - "ping": "254", + "player": "[=] Bleik", + "score": "4", + "ping": "34", "team": "1", - "deaths": "0", - "pid": "500538628", - "skill": "0", + "deaths": "1", + "pid": "500476212", + "skill": "1", "AIBot": "0" }, { - "player": "mami_gold", - "score": "0", - "ping": "55", - "team": "1", - "deaths": "0", - "pid": "500395073", - "skill": "0", + "player": "durbun", + "score": "4", + "ping": "104", + "team": "2", + "deaths": "1", + "pid": "48458390", + "skill": "1", "AIBot": "0" }, { - "player": "yazopel07", - "score": "0", - "ping": "81", + "player": "M3diC ||:.Sh@d0W.:||", + "score": "3", + "ping": "109", "team": "2", "deaths": "0", - "pid": "500582768", + "pid": "500589769", "skill": "0", "AIBot": "0" }, { - "player": "Artichot76", - "score": "0", - "ping": "34", + "player": "Seq_gOOdbYee^", + "score": "2", + "ping": "70", "team": "1", "deaths": "0", - "pid": "46772127", - "skill": "0", + "pid": "272300495", + "skill": "1", "AIBot": "0" }, { - "player": "[FUB] The-Killer-", - "score": "0", - "ping": "13", + "player": "demon1610", + "score": "2", + "ping": "44", "team": "2", "deaths": "0", - "pid": "500586673", - "skill": "0", + "pid": "110854694", + "skill": "1", "AIBot": "0" }, { - "player": "Sweet233", - "score": "0", - "ping": "342", + "player": "Cyou", + "score": "2", + "ping": "40", "team": "2", "deaths": "0", - "pid": "500567772", - "skill": "0", - "AIBot": "0" - }, - { - "player": "HeartOf20Men", - "score": "0", - "ping": "123", - "team": "1", - "deaths": "0", - "pid": "500117892", - "skill": "0", + "pid": "45747160", + "skill": "1", "AIBot": "0" }, { - "player": "krankenhelsinki", - "score": "0", - "ping": "42", - "team": "1", + "player": "Tess* SkyDistress", + "score": "2", + "ping": "45", + "team": "2", "deaths": "0", - "pid": "500381111", + "pid": "500115230", "skill": "0", "AIBot": "0" }, { - "player": "kome80", - "score": "0", - "ping": "21", + "player": "MedibuSuns", + "score": "2", + "ping": "53", "team": "1", - "deaths": "0", - "pid": "500453605", + "deaths": "1", + "pid": "351680652", "skill": "0", "AIBot": "0" }, { - "player": "SkYwhY *}sKy-wHor3{#*", - "score": "0", - "ping": "112", + "player": "Mert*Y BF2Played", + "score": "1", + "ping": "91", "team": "1", "deaths": "0", - "pid": "500585276", - "skill": "0", + "pid": "500590925", + "skill": "1", "AIBot": "0" }, { - "player": "DanecoYTb1726", + "player": "kevin_d", "score": "0", - "ping": "160", + "ping": "159", "team": "2", - "deaths": "0", - "pid": "500580266", - "skill": "0", + "deaths": "1", + "pid": "500515608", + "skill": "1", "AIBot": "0" }, { - "player": "Abadman", + "player": "Get_Sniped", "score": "0", - "ping": "29", + "ping": "30", "team": "2", "deaths": "0", - "pid": "500524043", + "pid": "47365348", "skill": "0", "AIBot": "0" }, { - "player": "ATA78", + "player": "THE_END_OF_THE_TIME", "score": "0", - "ping": "49", + "ping": "41", "team": "1", "deaths": "0", - "pid": "500134753", + "pid": "310964818", "skill": "0", "AIBot": "0" }, { - "player": "Rucki66", + "player": "-=BESH=-", "score": "0", - "ping": "20", + "ping": "46", "team": "1", "deaths": "0", - "pid": "71247371", + "pid": "500275688", "skill": "0", "AIBot": "0" }, { - "player": "Istrebitel77", + "player": "dexter.morgan2141s", "score": "0", - "ping": "17", + "ping": "53", "team": "1", "deaths": "0", - "pid": "419288055", + "pid": "500577259", "skill": "0", "AIBot": "0" }, { - "player": "THEREALloneWolfHUN", + "player": "Pwnplesniper", "score": "0", - "ping": "35", + "ping": "206", "team": "2", "deaths": "0", - "pid": "500590937", + "pid": "500562827", "skill": "0", "AIBot": "0" }, { - "player": "Photon", + "player": "SnakeCro30", "score": "0", - "ping": "49", + "ping": "34", "team": "2", "deaths": "0", - "pid": "500199415", + "pid": "477511643", "skill": "0", "AIBot": "0" }, { - "player": "oppo65ita", + "player": "DanecoYTb1726", "score": "0", - "ping": "43", + "ping": "161", "team": "2", "deaths": "0", - "pid": "500118493", - "skill": "0", - "AIBot": "0" - }, - { - "player": "begemoc", - "score": "0", - "ping": "36", - "team": "1", - "deaths": "0", - "pid": "500078534", + "pid": "500580266", "skill": "0", "AIBot": "0" }, { - "player": "Patrik99", + "player": "CENTINELA01", "score": "0", - "ping": "21", + "ping": "218", "team": "1", "deaths": "0", - "pid": "500589440", + "pid": "500270675", "skill": "0", "AIBot": "0" }, { - "player": "ChelovekPawuk", + "player": "Abadman", "score": "0", - "ping": "77", + "ping": "29", "team": "2", "deaths": "0", - "pid": "500568672", + "pid": "500524043", "skill": "0", "AIBot": "0" }, { - "player": "SWE antonzzzGubben", + "player": "@TTV sillyKaValley", "score": "0", - "ping": "28", + "ping": "16", "team": "2", "deaths": "0", - "pid": "239191021", + "pid": "500580239", "skill": "0", "AIBot": "0" }, { - "player": "=MNSK= =MNSK= darrel", + "player": "hiedar1999 hiedar1999", "score": "0", - "ping": "58", + "ping": "275", "team": "1", "deaths": "0", - "pid": "500557363", + "pid": "500118963", "skill": "0", "AIBot": "0" }, { - "player": "MedicsPleaseRevive:(", + "player": "Straybullit", "score": "0", - "ping": "18", + "ping": "126", "team": "2", "deaths": "0", - "pid": "500133886", - "skill": "0", - "AIBot": "0" - }, - { - "player": "VIKTORHK", - "score": "0", - "ping": "59", - "team": "1", - "deaths": "0", - "pid": "500112962", + "pid": "44989595", "skill": "0", "AIBot": "0" }, { - "player": "hulyganHUN", + "player": "PIPIRGA[RUS]", "score": "0", - "ping": "30", + "ping": "36", "team": "1", "deaths": "0", - "pid": "229523832", + "pid": "500015556", "skill": "0", "AIBot": "0" }, { - "player": "shommyx", + "player": "Foxtrot-Alfa", "score": "0", - "ping": "30", + "ping": "23", "team": "2", "deaths": "0", - "pid": "168136220", + "pid": "47347869", "skill": "0", "AIBot": "0" }, { - "player": "XTR MeXiCaNeT", + "player": "PrivateHenk", "score": "0", - "ping": "36", + "ping": "10", "team": "2", "deaths": "0", - "pid": "230850280", + "pid": "500117516", "skill": "0", "AIBot": "0" }, { - "player": "Tokapb_xxx", + "player": "GooD_KnifE_SpeeD", "score": "0", - "ping": "50", - "team": "2", + "ping": "38", + "team": "1", "deaths": "0", - "pid": "500381799", + "pid": "46687128", "skill": "0", "AIBot": "0" }, { - "player": "ARHARA", + "player": "=MNSK= darrel", "score": "0", - "ping": "62", - "team": "2", + "ping": "53", + "team": "1", "deaths": "0", - "pid": "193616524", + "pid": "500557363", "skill": "0", "AIBot": "0" }, { - "player": "=NsL= Sledge_H@mmer87", + "player": "AK-Canada", "score": "0", - "ping": "36", + "ping": "112", "team": "2", "deaths": "0", - "pid": "259194848", + "pid": "182559370", "skill": "0", "AIBot": "0" }, { - "player": "LORD BUG-ELIMINATOR-15", + "player": "royrambo358", "score": "0", - "ping": "29", + "ping": "67", "team": "2", "deaths": "0", - "pid": "85657274", + "pid": "194890691", "skill": "0", "AIBot": "0" }, { - "player": "Zbiry", + "player": "master_SSS", "score": "0", - "ping": "49", + "ping": "28", "team": "1", "deaths": "0", - "pid": "500375896", + "pid": "500548958", "skill": "0", "AIBot": "0" }, { - "player": "cleopatra-stratan", + "player": "Jactheknife", "score": "0", - "ping": "65", + "ping": "126", "team": "1", "deaths": "0", - "pid": "297946449", - "skill": "0", - "AIBot": "0" - }, - { - "player": "phiIIymungo", - "score": "0", - "ping": "46", - "team": "2", - "deaths": "0", - "pid": "500519244", - "skill": "0", - "AIBot": "0" - }, - { - "player": "demon1610", - "score": "0", - "ping": "43", - "team": "2", - "deaths": "0", - "pid": "110854110854694", + "pid": "500391063", "skill": "0", "AIBot": "0" }, { - "player": "MOCKBA7x7", + "player": "morech", "score": "0", - "ping": "40", + "ping": "87", "team": "1", "deaths": "0", - "pid": "500380235", - "skill": "0", - "AIBot": "0" - }, - { - "player": "abm60", - "score": "0", - "ping": "73", - "team": "2", - "deaths": "0", - "pid": "421588183", + "pid": "500585562", "skill": "0", "AIBot": "0" }, { - "player": "tronik", + "player": "$oL|TUDE", "score": "0", - "ping": "78", + "ping": "42", "team": "2", "deaths": "0", - "pid": "46694255", - "skill": "0", - "AIBot": "0" - }, - { - "player": ">>TAYSEER<<", - "score": "0", - "ping": "27", - "team": "1", - "deaths": "0", - "pid": "500583657", + "pid": "500540064", "skill": "0", "AIBot": "0" }, { "player": "AlexDeleter", "score": "0", - "ping": "11", - "team": "2", + "ping": "12", + "team": "1", "deaths": "0", "pid": "500147362", "skill": "0", "AIBot": "0" }, { - "player": "hime67", + "player": "Killer_Shooter", "score": "0", - "ping": "19", + "ping": "240", "team": "1", "deaths": "0", - "pid": "500589428", + "pid": "500141959", "skill": "0", "AIBot": "0" }, { - "player": "ICE.K92", + "player": "GER Oinkmen", "score": "0", - "ping": "27", + "ping": "26", "team": "2", "deaths": "0", - "pid": "500535970", + "pid": "43788609", "skill": "0", "AIBot": "0" }, { - "player": "-=BESH=-", + "player": "elcucuy", "score": "0", - "ping": "22", - "team": "2", - "deaths": "0", - "pid": "500275688", - "skill": "0", - "AIBot": "0" - }, - { - "player": "PlatonicSolid", - "score": "0", - "ping": "0", - "team": "2", - "deaths": "0", - "pid": "60507854", + "ping": "60", + "team": "1", + "deaths": "1", + "pid": "500589986", "skill": "0", "AIBot": "0" }, { - "player": "Pasifin96", + "player": "Fooxy69", "score": "0", - "ping": "56", - "team": "2", + "ping": "21", + "team": "1", "deaths": "1", - "pid": "500536616", + "pid": "500590992", "skill": "0", "AIBot": "0" }, { - "player": "bgrysl", + "player": "Zezoo123", "score": "0", - "ping": "57", + "ping": "85", "team": "1", "deaths": "1", - "pid": "500435868", + "pid": "500540652", "skill": "0", "AIBot": "0" }, { - "player": "Glek18", + "player": "Forumski", "score": "0", - "ping": "87", - "team": "2", + "ping": "195", + "team": "1", "deaths": "1", - "pid": "500219692", + "pid": "500438638", "skill": "0", "AIBot": "0" }, { - "player": "bg_solgier", + "player": "Ivimoto", "score": "0", - "ping": "42", + "ping": "26", "team": "1", - "deaths": "1", - "pid": "72371430", + "deaths": "2", + "pid": "73100284", "skill": "0", "AIBot": "0" }, { - "player": "HuntingPanther", + "player": "MrDeath1337", "score": "0", - "ping": "139", + "ping": "85", "team": "1", - "deaths": "1", - "pid": "500243443", + "deaths": "3", + "pid": "500590762", "skill": "0", "AIBot": "0" }, { - "player": "10Pennywise1282", + "player": "STREAM twitch.tv/bf2tv", "score": "-2", - "ping": "37", + "ping": "12", "team": "2", - "deaths": "0", - "pid": "112115718", + "deaths": "1", + "pid": "500470370", "skill": "0", "AIBot": "0" } ], "Teams": [ { - "eam": "CH", + "eam": "MEC", "score": "0" }, { diff --git a/OpenGSQTests/Results/GameSpy4Tests/GetStatusTest.json b/OpenGSQTests/Results/GameSpy4Tests/GetStatusTest.json index 26ae783..b13cb7e 100644 --- a/OpenGSQTests/Results/GameSpy4Tests/GetStatusTest.json +++ b/OpenGSQTests/Results/GameSpy4Tests/GetStatusTest.json @@ -14,19 +14,19 @@ }, "Players": [ { - "player": "Spahikhi" + "player": "XxNE0BLAZExX777" }, { - "player": "BeansRgodly" + "player": "Spahikhi" }, { - "player": "IronFlam3s" + "player": "Ultimopro5" }, { - "player": "COOLPOPULAR7" + "player": "IronFlam3s" }, { - "player": "HunterDebAser" + "player": "ilovemeowing04" } ], "Teams": [] diff --git a/OpenGSQTests/Results/KillingFloorTests/GetDetailsTest.json b/OpenGSQTests/Results/KillingFloorTests/GetDetailsTest.json index 19d02ce..8967688 100644 --- a/OpenGSQTests/Results/KillingFloorTests/GetDetailsTest.json +++ b/OpenGSQTests/Results/KillingFloorTests/GetDetailsTest.json @@ -1,14 +1,14 @@ { - "WaveCurrent": 8, + "WaveCurrent": 1, "WaveTotal": 10, "ServerId": 0, "ServerIP": "", "GamePort": 7707, "QueryPort": 0, "ServerName": "WS-GAMING.EU | NORMAL | 60LVL [#1]", - "MapName": "KF-Porn-Shop-Beta6", + "MapName": "KF-Arcade-Shopping-WS", "GameType": "UZGameType", - "NumPlayers": 17, + "NumPlayers": 9, "MaxPlayers": 25, "Ping": 0, "Flags": 64, diff --git a/OpenGSQTests/Results/KillingFloorTests/GetPlayersTest.json b/OpenGSQTests/Results/KillingFloorTests/GetPlayersTest.json index 0c658cf..47a0d25 100644 --- a/OpenGSQTests/Results/KillingFloorTests/GetPlayersTest.json +++ b/OpenGSQTests/Results/KillingFloorTests/GetPlayersTest.json @@ -1,107 +1,44 @@ [ { - "Id": 4080, - "Name": "DLL", - "Ping": 52, - "Score": 2321, - "StatsId": 536870912 - }, - { - "Id": 3844, - "Name": "uuuuuttyy", - "Ping": 240, - "Score": 3713, - "StatsId": 536870912 - }, - { - "Id": 3647, - "Name": "SUBZERO", - "Ping": 80, - "Score": 2762, - "StatsId": 536870912 - }, - { - "Id": 2799, - "Name": "Odessit", - "Ping": 68, - "Score": 5535, - "StatsId": 536870912 - }, - { - "Id": 1983, - "Name": "wece67", - "Ping": 28, - "Score": 3339, - "StatsId": 536870912 - }, - { - "Id": 1811, - "Name": "NIC128", - "Ping": 68, - "Score": 3103, - "StatsId": 536870912 - }, - { - "Id": 860, - "Name": "XFACTOR", - "Ping": 144, - "Score": 2919, - "StatsId": 536870912 - }, - { - "Id": 753, - "Name": "Sheriffi", - "Ping": 48, - "Score": 3111, - "StatsId": 536870912 - }, - { - "Id": 275, - "Name": "Doodlez", - "Ping": 68, - "Score": -2147483648, - "StatsId": 536870912 - }, - { - "Id": 8, - "Name": "johnxina", - "Ping": 40, - "Score": 5762, + "Id": 6, + "Name": "Erniox", + "Ping": 20, + "Score": 500, "StatsId": 536870912 }, { - "Id": 7, - "Name": "Добряк", - "Ping": 60, - "Score": 3587, + "Id": 5, + "Name": "Ahoris_.i.", + "Ping": 104, + "Score": 500, "StatsId": 536870912 }, { - "Id": 6, - "Name": "Danek", + "Id": 4, + "Name": "Toshka", "Ping": 56, - "Score": 632, + "Score": 500, "StatsId": 536870912 }, { "Id": 3, - "Name": "[Dr.Pavco]", - "Ping": 56, - "Score": 2444, + "Name": "$Mantixas$", + "Ping": 20, + "Score": 500, "StatsId": 536870912 }, { "Id": 2, - "Name": "H1ƤהѲƬ1â„‚", - "Ping": 88, - "Score": 25275, + "Name": "BoNDe0", + "Ping": 16, + "Score": 500, "StatsId": 536870912 }, { "Id": 1, - "Name": "DS", - "Ping": 84, - "Score": 1102, - "StatsId": 0 + "Name": "Rick_Sanchez", + "Ping": 16, + "Score": 500, + "StatsId": 536870912 } ] \ No newline at end of file diff --git a/OpenGSQTests/Results/MinecraftTests/GetStatusPre17Test.json b/OpenGSQTests/Results/MinecraftTests/GetStatusPre17Test.json index 493ca73..55a54e6 100644 --- a/OpenGSQTests/Results/MinecraftTests/GetStatusPre17Test.json +++ b/OpenGSQTests/Results/MinecraftTests/GetStatusPre17Test.json @@ -2,6 +2,6 @@ "Protocol": "127", "Version": "Waterfall 1.8.x, 1.9.x, 1.10.x, 1.11.x, 1.12.x, 1.13.x, 1.14.x, 1.15.x, 1.16.x, 1.17.x, 1.18.x, 1.19.x, 1.20.x", "Motd": "§f§6 §6§m---§6|§d§k!\\!§6§lGOLDCRAFT.IR§d§k!\\!§6|§6§m---§1 §7v1.20.1", - "NumPlayers": 2, + "NumPlayers": 8, "MaxPlayers": 2023 } \ No newline at end of file diff --git a/OpenGSQTests/Results/MinecraftTests/GetStatusTest.json b/OpenGSQTests/Results/MinecraftTests/GetStatusTest.json index 7e1b01b..b566b88 100644 --- a/OpenGSQTests/Results/MinecraftTests/GetStatusTest.json +++ b/OpenGSQTests/Results/MinecraftTests/GetStatusTest.json @@ -5,7 +5,7 @@ }, "players": { "max": 2023, - "online": 2, + "online": 8, "sample": [ { "name": "§aBe Player Haye Server", diff --git a/OpenGSQTests/Results/Quake1Tests/GetStatusTest.json b/OpenGSQTests/Results/Quake1Tests/GetStatusTest.json index 35fc09e..1bf580d 100644 --- a/OpenGSQTests/Results/Quake1Tests/GetStatusTest.json +++ b/OpenGSQTests/Results/Quake1Tests/GetStatusTest.json @@ -6,7 +6,7 @@ "hostname": "[BOTS] CustomTF For The People [BOTS]", "community": "https://discord.gg/fp9sSZ5", "admin/dev": "�Pulse����-", - "n": "22", + "n": "18", "rj": "2", "curse": "5", "deathmatch": "3", @@ -18,98 +18,68 @@ "samelevel": "0", "money": "11000", "watervis": "1", - "map": "spit" + "map": "bam4" }, "Players": [ { - "Id": 242, - "Score": -1, - "Time": 19, - "Ping": 807, - "Name": "Vincent", - "Skin": "tf_medic", - "Color1": 4, - "Color2": 4 - }, - { - "Id": 243, - "Score": -1, - "Time": 19, - "Ping": 807, - "Name": "Starscream", - "Skin": "tf_hwguy", - "Color1": 13, - "Color2": 13 - }, - { - "Id": 244, - "Score": -1, - "Time": 19, + "Id": 625, + "Score": 0, + "Time": 11, "Ping": 807, - "Name": "T-1000", - "Skin": "tf_hwguy", + "Name": "Governator", + "Skin": "tf_snipe", "Color1": 13, "Color2": 13 }, { - "Id": 245, - "Score": -1, - "Time": 19, + "Id": 626, + "Score": 0, + "Time": 11, "Ping": 807, - "Name": "Data", - "Skin": "tf_medic", + "Name": "Jerry", + "Skin": "tf_snipe", "Color1": 4, "Color2": 4 }, { - "Id": 246, - "Score": -1, - "Time": 19, + "Id": 627, + "Score": 0, + "Time": 11, "Ping": 807, - "Name": "Ash", - "Skin": "tf_medic", + "Name": "R2-D2", + "Skin": "tf_eng", "Color1": 13, "Color2": 13 }, { - "Id": 247, - "Score": -1, - "Time": 19, + "Id": 628, + "Score": 0, + "Time": 11, "Ping": 807, - "Name": "Gort", - "Skin": "tf_pyro", + "Name": "Kryten", + "Skin": "tf_sold", "Color1": 4, "Color2": 4 }, { - "Id": 248, - "Score": -1, - "Time": 19, + "Id": 623, + "Score": 0, + "Time": 11, "Ping": 807, - "Name": "Gypsy", - "Skin": "tf_hwguy", - "Color1": 13, - "Color2": 13 + "Name": "Starscream", + "Skin": "tf_demo", + "Color1": 4, + "Color2": 4 }, { - "Id": 250, + "Id": 624, "Score": 0, - "Time": 1, - "Ping": 363, - "Name": "user-250", - "Skin": "", - "Color1": 0, - "Color2": 0 - }, - { - "Id": 241, - "Score": -1, - "Time": 19, + "Time": 11, "Ping": 807, - "Name": "KITT", - "Skin": "tf_snipe", - "Color1": 4, - "Color2": 4 + "Name": "Data", + "Skin": "tf_medic", + "Color1": 13, + "Color2": 13 } ] } \ No newline at end of file diff --git a/OpenGSQTests/Results/Quake2Tests/GetStatusTest.json b/OpenGSQTests/Results/Quake2Tests/GetStatusTest.json index 3d19e07..09b0d69 100644 --- a/OpenGSQTests/Results/Quake2Tests/GetStatusTest.json +++ b/OpenGSQTests/Results/Quake2Tests/GetStatusTest.json @@ -13,16 +13,16 @@ "gamedir": "jump", "gamename": "Q2JUMP 1.35ger", "hostname": ".german q2 jump", - "mapname": "hellfire_46", + "mapname": "apocalypse42", "matchlock": "1", "matchtime": "20", "maxclients": "15", "port": "27910", "protocol": "34", - "time_remaining": "32:35", + "time_remaining": "00:59", "timelimit": "0", "version": "q2proded r1826~7ad132a Dec 28 2018 Linux x86_64", - "uptime": "16 days, 9 hours, 42 mins, 45 secs" + "uptime": "17 days, 13 hours, 22 mins, 40 secs" }, "Players": [] } \ No newline at end of file diff --git a/OpenGSQTests/Results/Quake3Tests/GetInfoTest.json b/OpenGSQTests/Results/Quake3Tests/GetInfoTest.json index 7d71838..ce13915 100644 --- a/OpenGSQTests/Results/Quake3Tests/GetInfoTest.json +++ b/OpenGSQTests/Results/Quake3Tests/GetInfoTest.json @@ -3,7 +3,7 @@ "protocol": "84", "hostname": "New Server /connect jay1.clan-fa.com:27960", "serverload": "2", - "mapname": "et_mor2_night_final", + "mapname": "river_port", "clients": "25", "humans": "0", "sv_maxclients": "60", diff --git a/OpenGSQTests/Results/Quake3Tests/GetStatusTest.json b/OpenGSQTests/Results/Quake3Tests/GetStatusTest.json index 73e6975..7a5c033 100644 --- a/OpenGSQTests/Results/Quake3Tests/GetStatusTest.json +++ b/OpenGSQTests/Results/Quake3Tests/GetStatusTest.json @@ -10,7 +10,7 @@ "mod_version": "2.2.0", "mod_url": "http://jaymod.clanfu.org", "mod_binary": "linux-release", - "sv_uptime": "04d07h26m", + "sv_uptime": "05d11h07m", "sv_cpu": "Intel(R) Xeon(R) CPU E3-1270 v5", "g_axismaxlives": "0", "g_alliedmaxlives": "0", @@ -21,7 +21,7 @@ "sv_minPing": "0", "sv_minRate": "0", "sv_privateClients": "0", - "mapname": "et_mor2_night_final", + "mapname": "river_port", "protocol": "84", "g_gametype": "2", "sv_userInfoFloodProtect": "1", @@ -40,129 +40,129 @@ }, "Players": [ { - "Frags": 62362, + "Frags": 79980, "Ping": 0, "Name": "George" }, { - "Frags": 56798, + "Frags": 71487, "Ping": 0, "Name": "Beelz" }, { - "Frags": 64674, + "Frags": 82284, "Ping": 0, "Name": "Chimichanga" }, { - "Frags": 55439, + "Frags": 70231, "Ping": 0, "Name": "Kaolin" }, { - "Frags": 62737, + "Frags": 83683, "Ping": 0, "Name": "HalfH" }, { - "Frags": 53306, + "Frags": 67616, "Ping": 0, "Name": "Ed" }, { - "Frags": 63139, + "Frags": 78907, "Ping": 0, "Name": "Razor" }, { - "Frags": 54172, + "Frags": 67812, "Ping": 0, "Name": "Amadi" }, { - "Frags": 64624, + "Frags": 81942, "Ping": 0, "Name": "Brad" }, { - "Frags": 53712, + "Frags": 69204, "Ping": 0, "Name": "Bortack" }, { - "Frags": 60935, + "Frags": 79469, "Ping": 0, "Name": "Blackadder" }, { - "Frags": 53119, + "Frags": 67736, "Ping": 0, "Name": "Nandet" }, { - "Frags": 59671, + "Frags": 78164, "Ping": 0, "Name": "Sean" }, { - "Frags": 53373, + "Frags": 66966, "Ping": 0, "Name": "Morg" }, { - "Frags": 60570, + "Frags": 77396, "Ping": 0, "Name": "Nohope" }, { - "Frags": 52657, + "Frags": 66643, "Ping": 0, "Name": "Whitt" }, { - "Frags": 63711, + "Frags": 79029, "Ping": 0, "Name": "Newbie" }, { - "Frags": 52171, + "Frags": 65066, "Ping": 0, "Name": "Stinger" }, { - "Frags": 62241, + "Frags": 78848, "Ping": 0, "Name": "Cledus" }, { - "Frags": 51200, + "Frags": 65039, "Ping": 0, "Name": "Flint" }, { - "Frags": 62533, + "Frags": 79404, "Ping": 0, "Name": "Hitnrun" }, { - "Frags": 51367, + "Frags": 64251, "Ping": 0, "Name": "Wens" }, { - "Frags": 16475, + "Frags": 30852, "Ping": 0, "Name": "Halfwit" }, { - "Frags": 46684, + "Frags": 60449, "Ping": 0, "Name": "Argo" }, { - "Frags": 302, + "Frags": 1083, "Ping": 0, - "Name": "Tanz" + "Name": "Backfire" } ] } \ No newline at end of file diff --git a/OpenGSQTests/Results/RakNetTests/GetStatusTest.json b/OpenGSQTests/Results/RakNetTests/GetStatusTest.json index 22270bb..4644019 100644 --- a/OpenGSQTests/Results/RakNetTests/GetStatusTest.json +++ b/OpenGSQTests/Results/RakNetTests/GetStatusTest.json @@ -3,9 +3,9 @@ "MotdLine1": "Advancius Network", "ProtocolVersion": 630, "VersionName": "1.20.50", - "NumPlayers": 213, + "NumPlayers": 181, "MaxPlayers": 400, - "ServerUniqueId": "5608118762258601527", + "ServerUniqueId": "12845842376166400652", "MotdLine2": "discord.advancius.net", "GameMode": "Survival", "GameModeNumeric": 1, diff --git a/OpenGSQTests/Results/SampTests/GetPlayersTest.json b/OpenGSQTests/Results/SampTests/GetPlayersTest.json index 492a64a..21ea4e4 100644 --- a/OpenGSQTests/Results/SampTests/GetPlayersTest.json +++ b/OpenGSQTests/Results/SampTests/GetPlayersTest.json @@ -1,560 +1,320 @@ [ { "Id": 0, - "Name": "Brian_Gambino", - "Score": 17, - "Ping": 82 + "Name": "Lisa_Anderline", + "Score": 23, + "Ping": 168 }, { "Id": 1, - "Name": "[NBA] DelRoy_Anderson", - "Score": 17, - "Ping": 77 + "Name": "Sidi_Boundagani", + "Score": 23, + "Ping": 65 }, { "Id": 2, - "Name": "Miguel_Escobar", - "Score": 28, - "Ping": 301 + "Name": "Pablo_Shelby", + "Score": 16, + "Ping": 189 }, { "Id": 3, - "Name": "[NBA] Jaren_Jackson", - "Score": 16, - "Ping": 78 + "Name": "Charlotte_Martinez", + "Score": 18, + "Ping": 66 }, { "Id": 4, - "Name": "Jacob_Harlon", - "Score": 20, - "Ping": 121 + "Name": "Michael_Hilton", + "Score": 27, + "Ping": 60 }, { "Id": 5, - "Name": "Chuck_Clayton", - "Score": 24, - "Ping": 57 + "Name": "Lukas_Eastwood", + "Score": 30, + "Ping": 132 }, { "Id": 6, - "Name": "[SAPD] Iftina_Hernandez", - "Score": 26, - "Ping": 233 + "Name": "Hector_Huerta", + "Score": 23, + "Ping": 200 }, { "Id": 7, - "Name": "Mike_Legend", - "Score": 23, - "Ping": 202 + "Name": "Jacqueline_Matisse", + "Score": 19, + "Ping": 65 }, { "Id": 8, - "Name": "Nazario_Vialpando", - "Score": 22, - "Ping": 155 + "Name": "[SAFD] Tyrone_McClain", + "Score": 31, + "Ping": 189 }, { "Id": 9, - "Name": "[SAPD] Hendrix_Anderson", - "Score": 33, - "Ping": 93 + "Name": "ibr_Bremooo", + "Score": 0, + "Ping": 97 }, { "Id": 10, - "Name": "[NG] Mark_Chesterfield", + "Name": "[WWI] Andrew_Wilson", "Score": 25, - "Ping": 61 + "Ping": 178 }, { "Id": 11, - "Name": "Abu_Hajar", - "Score": 22, - "Ping": 229 + "Name": "Domingo_Vercetti", + "Score": 23, + "Ping": 60 }, { "Id": 12, - "Name": "rob_poiler", - "Score": 5, - "Ping": 253 + "Name": "Kazak_Kodorov", + "Score": 31, + "Ping": 60 }, { "Id": 13, - "Name": "[WWI] Andrew_Wilson", - "Score": 25, - "Ping": 275 + "Name": "Klaus_Becker", + "Score": 21, + "Ping": 82 }, { "Id": 14, "Name": "[SASD] Dom_Hoover", "Score": 24, - "Ping": 64 - }, - { - "Id": 15, - "Name": "[MB] Benson_Corleone", - "Score": 55, - "Ping": 78 + "Ping": 71 }, { "Id": 16, - "Name": "Bofade_Eznuts", - "Score": 26, - "Ping": 41 + "Name": "[NG] Ted_Ehrmantraut", + "Score": 28, + "Ping": 137 }, { "Id": 17, - "Name": "Shubham_Addison", - "Score": 26, - "Ping": 123 - }, - { - "Id": 18, - "Name": "Arturo_Beltran", - "Score": 28, - "Ping": 193 + "Name": "Roman_Vercetti", + "Score": 19, + "Ping": 61 }, { "Id": 19, - "Name": "Vincent_Maranzano", - "Score": 8, - "Ping": 68 + "Name": "[SASD] Adel_Lordran", + "Score": 26, + "Ping": 189 }, { "Id": 20, - "Name": "[LSV] Tony_Frost", - "Score": 24, - "Ping": 92 + "Name": "Hasan_Hahaha", + "Score": 0, + "Ping": 81 }, { "Id": 21, - "Name": "Sidi_Boundagani", - "Score": 23, - "Ping": 57 + "Name": "Rob_Persway", + "Score": 6, + "Ping": 255 }, { "Id": 22, - "Name": "Hadleigh_Vanidestine", - "Score": 26, - "Ping": 71 + "Name": "Carlo_Vercetti", + "Score": 57, + "Ping": 51 }, { "Id": 23, - "Name": "Antonio_Vercetti", - "Score": 36, - "Ping": 36 + "Name": "Bofade_Eznuts", + "Score": 26, + "Ping": 45 }, { "Id": 24, - "Name": "[HC] Dylan_Becker", - "Score": 25, - "Ping": 51 + "Name": "Hutero_Crazy", + "Score": 49, + "Ping": 117 }, { "Id": 25, - "Name": "Kazak_Kodorov", - "Score": 31, - "Ping": 56 + "Name": "Mike_Legend", + "Score": 23, + "Ping": 210 }, { "Id": 26, - "Name": "Amaya_Dobre", - "Score": 12, - "Ping": 327 + "Name": "[SAFD] Simon_Gofrowsky", + "Score": 27, + "Ping": 81 }, { "Id": 27, - "Name": "Luka_Stojicevic", - "Score": 9, - "Ping": 51 + "Name": "Elias_Rumph", + "Score": 8, + "Ping": 62 }, { "Id": 28, - "Name": "Henry_Narkaman", - "Score": 2, - "Ping": 97 + "Name": "[GSF] James_Perkin", + "Score": 31, + "Ping": 158 }, { "Id": 29, - "Name": "Kapllan_Doda", - "Score": 2, - "Ping": 61 + "Name": "[NG] Shawn_Cooper", + "Score": 28, + "Ping": 60 }, { "Id": 30, - "Name": "Nick_Coleman", - "Score": 8, - "Ping": 295 + "Name": "Viktor_Addlson", + "Score": 28, + "Ping": 128 }, { "Id": 31, - "Name": "Valode_Narkaman", - "Score": 6, - "Ping": 82 + "Name": "jhon", + "Score": 0, + "Ping": 282 }, { "Id": 32, - "Name": "Elias_Rumph", - "Score": 8, - "Ping": 62 + "Name": "[MB] Benson_Corleone", + "Score": 55, + "Ping": 81 }, { "Id": 33, - "Name": "Alex_Kanriz", - "Score": 12, - "Ping": 175 + "Name": "[SASD] Franklin_Grey", + "Score": 26, + "Ping": 55 }, { "Id": 34, - "Name": "[NBA] Percy_WiIliams", - "Score": 24, - "Ping": 149 - }, - { - "Id": 35, - "Name": "[WWI] Giovanni_Russell", - "Score": 9, - "Ping": 66 + "Name": "[WWI] Ignaz_Becker", + "Score": 21, + "Ping": 76 }, { "Id": 36, - "Name": "Malena_Vasquez", - "Score": 25, - "Ping": 208 - }, - { - "Id": 37, - "Name": "Luis_Muller", - "Score": 15, - "Ping": 176 + "Name": "Matthew_Reiner", + "Score": 32, + "Ping": 46 }, { "Id": 38, - "Name": "Mike_Jonne", - "Score": 13, - "Ping": 20 + "Name": "Mimos_Hammi", + "Score": 23, + "Ping": 143 }, { "Id": 39, - "Name": "Matthew_Reiner", - "Score": 32, - "Ping": 52 + "Name": "Szopjal_Geci", + "Score": 8, + "Ping": 61 }, { "Id": 40, - "Name": "Kishore_Hope", - "Score": 19, - "Ping": 274 + "Name": "Jacob_Harlon", + "Score": 20, + "Ping": 50 }, { "Id": 41, - "Name": "[SASD] Enzo_Harrison", - "Score": 29, - "Ping": 238 + "Name": "[SAPD] Yoru_Becker", + "Score": 20, + "Ping": 86 }, { "Id": 42, - "Name": "[FBI] Alan_Reins", - "Score": 23, - "Ping": 181 + "Name": "Seyhan_Addison", + "Score": 30, + "Ping": 178 }, { "Id": 43, - "Name": "Akash_Rolex", - "Score": 6, - "Ping": 175 - }, - { - "Id": 44, - "Name": "[GSF] Sali_Cross", - "Score": 27, + "Name": "[FBI] Mircea_Niko", + "Score": 20, "Ping": 61 }, { "Id": 45, - "Name": "[FBI] Omer_Azeez", - "Score": 28, - "Ping": 30 + "Name": "Dominique_Johnsons", + "Score": 9, + "Ping": 24 }, { "Id": 46, - "Name": "Kill_Dinks", - "Score": 17, - "Ping": 123 + "Name": "[SASD] Nabster_Kowalski", + "Score": 16, + "Ping": 76 }, { "Id": 47, - "Name": "[NBA] Lamar_Anderson", - "Score": 30, - "Ping": 82 + "Name": "[NG] Mark_Chesterfield", + "Score": 25, + "Ping": 70 }, { "Id": 48, - "Name": "[SAPD] Bret_Reigns", - "Score": 37, - "Ping": 72 + "Name": "Daniel_Wellington", + "Score": 21, + "Ping": 137 }, { "Id": 49, - "Name": "[SAPD] Kondo_Tadao", - "Score": 25, - "Ping": 224 - }, - { - "Id": 50, - "Name": "[FBI] Enya_Hernandez", - "Score": 30, - "Ping": 51 - }, - { - "Id": 51, - "Name": "rodriiii_caino", - "Score": 0, - "Ping": 279 + "Name": "Gustavo_Barboza", + "Score": 8, + "Ping": 77 }, { "Id": 52, - "Name": "Alesio_Rumph", - "Score": 12, - "Ping": 52 + "Name": "[VIP] Martin_Winchester", + "Score": 37, + "Ping": 163 }, { "Id": 53, - "Name": "Jack_Vercetti", - "Score": 23, - "Ping": 165 - }, - { - "Id": 54, - "Name": "[NG] Marcus_Fernandes", - "Score": 23, - "Ping": 206 + "Name": "vito_carleone", + "Score": 19, + "Ping": 66 }, { "Id": 55, - "Name": "[NBA] Clayton_Burns", - "Score": 20, - "Ping": 56 + "Name": "[HC] Dylan_becker", + "Score": 25, + "Ping": 55 }, { "Id": 56, - "Name": "Gerald_Bleedson", - "Score": 19, - "Ping": 305 - }, - { - "Id": 57, - "Name": "Sergio.Ramos", - "Score": 0, - "Ping": 103 + "Name": "[SASD] Hammad_Hilton", + "Score": 30, + "Ping": 194 }, { "Id": 58, - "Name": "[NBA] Charles_McTavish", - "Score": 27, - "Ping": 51 + "Name": "Kacper_Kowalski", + "Score": 49, + "Ping": 35 }, { "Id": 59, - "Name": "Cuauhtemoc_Maldonado", - "Score": 24, - "Ping": 77 - }, - { - "Id": 60, - "Name": "Rebel_agosto", - "Score": 0, - "Ping": 160 - }, - { - "Id": 61, - "Name": "Szopjal_Geci", - "Score": 7, - "Ping": 61 + "Name": "[WWI] Smog_Eix", + "Score": 21, + "Ping": 88 }, { "Id": 62, - "Name": "[SAPD] Dinghy_Davidson", - "Score": 44, - "Ping": 87 - }, - { - "Id": 63, - "Name": "Isabella_Vasquez", - "Score": 28, - "Ping": 171 - }, - { - "Id": 64, - "Name": "Clark_Gvardia", - "Score": 8, - "Ping": 76 - }, - { - "Id": 65, - "Name": "Charlotte_Martinez", - "Score": 18, - "Ping": 67 - }, - { - "Id": 66, - "Name": "mike_kings", - "Score": 5, - "Ping": 243 - }, - { - "Id": 67, - "Name": "Hutero_Crazy", - "Score": 49, - "Ping": 72 - }, - { - "Id": 68, - "Name": "[SASD] Franklin_Grey", - "Score": 26, - "Ping": 50 - }, - { - "Id": 69, - "Name": "Hector_Huerta", - "Score": 23, - "Ping": 201 - }, - { - "Id": 70, - "Name": "PW_Arshin", - "Score": 0, - "Ping": 170 - }, - { - "Id": 71, - "Name": "[SWAT] Louis_Fratto", - "Score": 18, - "Ping": 193 - }, - { - "Id": 72, - "Name": "[SASD] Hammad_Hilton", - "Score": 30, - "Ping": 369 - }, - { - "Id": 73, - "Name": "[SAPD] Billu_Morrison", - "Score": 23, - "Ping": 922 - }, - { - "Id": 74, - "Name": "John_Caruso", - "Score": 22, - "Ping": 82 - }, - { - "Id": 75, - "Name": "Kenard_Bozb", - "Score": 17, - "Ping": 36 - }, - { - "Id": 77, - "Name": "gtag", - "Score": 0, - "Ping": 242 - }, - { - "Id": 78, - "Name": "Donny_Charleston", - "Score": 28, - "Ping": 41 - }, - { - "Id": 79, - "Name": "Drew_Tattaglia", - "Score": 6, - "Ping": 56 - }, - { - "Id": 80, - "Name": "[GSF] Dikembe_Dalton", - "Score": 17, - "Ping": 77 - }, - { - "Id": 81, - "Name": "Justin_Swift", - "Score": 28, - "Ping": 186 - }, - { - "Id": 82, - "Name": "Viktor_Addlson", - "Score": 28, - "Ping": 135 - }, - { - "Id": 83, - "Name": "Denzel_Costa", - "Score": 25, - "Ping": 243 - }, - { - "Id": 84, - "Name": "Rowan_Rojas", - "Score": 25, - "Ping": 176 - }, - { - "Id": 85, - "Name": "[GSF] Jax_Kingston", - "Score": 34, - "Ping": 66 - }, - { - "Id": 86, - "Name": "[VIP] Shanell_Fairfield", - "Score": 60, - "Ping": 92 - }, - { - "Id": 87, - "Name": "[WWI] Nina_Tech", - "Score": 27, - "Ping": 125 - }, - { - "Id": 88, - "Name": "Ive_Harmon", - "Score": 35, - "Ping": 83 - }, - { - "Id": 89, - "Name": "Omar_Beausejour", - "Score": 10, - "Ping": 25 - }, - { - "Id": 90, - "Name": "Yuniel_Contrera", - "Score": 0, - "Ping": 185 - }, - { - "Id": 91, - "Name": "Mark_Schafer", - "Score": 19, - "Ping": 103 - }, - { - "Id": 92, - "Name": "Bintang_Pamungkas", - "Score": 0, - "Ping": 358 + "Name": "Damien_Taylor", + "Score": 20, + "Ping": 112 }, { - "Id": 93, - "Name": "Gerald_Harris", - "Score": 11, - "Ping": 113 + "Id": 76, + "Name": "Tanay_Curtis", + "Score": 21, + "Ping": 108 } ] \ No newline at end of file diff --git a/OpenGSQTests/Results/SampTests/GetStatusTest.json b/OpenGSQTests/Results/SampTests/GetStatusTest.json index e69d681..941eaa7 100644 --- a/OpenGSQTests/Results/SampTests/GetStatusTest.json +++ b/OpenGSQTests/Results/SampTests/GetStatusTest.json @@ -1,6 +1,6 @@ { "Password": false, - "NumPlayers": 94, + "NumPlayers": 52, "MaxPlayers": 250, "ServerName": "[ENG] Valrise RPG", "GameType": "Valrise RP 2.0.13 (RPG/RP)", diff --git a/OpenGSQTests/Results/SourceTests/GetInfoTest.json b/OpenGSQTests/Results/SourceTests/GetInfoTest.json index 2445021..5f0cc9d 100644 --- a/OpenGSQTests/Results/SourceTests/GetInfoTest.json +++ b/OpenGSQTests/Results/SourceTests/GetInfoTest.json @@ -6,14 +6,14 @@ "SteamID": 85568392929506771, "SpectatorPort": 27020, "SpectatorName": "(stv bot)", - "Keywords": "alltalk,increased_maxplayers,payload,shounic", + "Keywords": "alltalk,cp,increased_maxplayers,shounic", "GameID": 440, "Protocol": 17, "Name": "shounic trenches (USA Chicago)", - "Map": "pl_pier", + "Map": "cp_mountainlab", "Folder": "tf", "Game": "Team Fortress", - "Players": 98, + "Players": 99, "MaxPlayers": 100, "Bots": 0, "ServerType": 100, diff --git a/OpenGSQTests/Results/SourceTests/GetPlayersTest.json b/OpenGSQTests/Results/SourceTests/GetPlayersTest.json index 6720523..499beab 100644 --- a/OpenGSQTests/Results/SourceTests/GetPlayersTest.json +++ b/OpenGSQTests/Results/SourceTests/GetPlayersTest.json @@ -1,442 +1,497 @@ [ { - "Name": "SAMSON(RUS)", - "Score": 23, - "Duration": 10723.83 + "Name": "Haywoood Jablowme", + "Score": 7, + "Duration": 12892.308 }, { - "Name": "turknaskooyun", - "Score": 3, - "Duration": 10723.829 + "Name": "Xtreme_Shoot", + "Score": 0, + "Duration": 10855.669 }, { - "Name": "❤LikeanAngexngelofKzerongRows", - "Score": 14, - "Duration": 10125.511 + "Name": "Ignis", + "Score": 0, + "Duration": 9787.437 }, { - "Name": "Baeplush", - "Score": 9, - "Duration": 9894.555 + "Name": "OMGEngineer", + "Score": 8, + "Duration": 9694.301 }, { - "Name": "Scrimblo I", - "Score": 1, - "Duration": 9513.253 + "Name": "grrr i hate mondeys!!!", + "Score": 15, + "Duration": 9073.1455 }, { - "Name": "Mike1633", + "Name": "Dragrandir", "Score": 8, - "Duration": 9071.885 + "Duration": 7966.796 }, { - "Name": "Flightkitten #SAVETF2", - "Score": 0, - "Duration": 8115.799 + "Name": "Nokia_Legends03", + "Score": 4, + "Duration": 7536.5454 }, { - "Name": "-W3E-GoatTheftAuto", - "Score": 2, - "Duration": 7857.664 + "Name": "techno machine.", + "Score": 0, + "Duration": 6349.345 }, { - "Name": "lolman165", - "Score": 9, - "Duration": 7804.669 + "Name": "Ammonsu", + "Score": 17, + "Duration": 5914.4204 }, { - "Name": "A10-kentaco", - "Score": 0, - "Duration": 7560.6255 + "Name": "Jaden", + "Score": 17, + "Duration": 5821.4805 }, { - "Name": "Galaktus", - "Score": 0, - "Duration": 6625.4897 + "Name": "FaNTaSTiK_v2", + "Score": 7, + "Duration": 5738.966 }, { - "Name": "Rody", - "Score": 5, - "Duration": 6297.642 + "Name": "Franva97", + "Score": 8, + "Duration": 5564.9053 }, { - "Name": "Arck0s", - "Score": 8, - "Duration": 6056.5024 + "Name": "I Broke My Ankles", + "Score": 9, + "Duration": 5550.5205 }, { - "Name": "_shrub", - "Score": 3, - "Duration": 5848.0625 + "Name": "Qeb", + "Score": 17, + "Duration": 5068.256 }, { - "Name": "JonasVenture", - "Score": 5, - "Duration": 5743.347 + "Name": "Korokomancer", + "Score": 3, + "Duration": 4628.947 }, { - "Name": "palo_jr", - "Score": 8, - "Duration": 5713.857 + "Name": "The Gamering", + "Score": 10, + "Duration": 4388.302 }, { - "Name": "♡★Niko (she/her)★♡", - "Score": 3, - "Duration": 5447.907 + "Name": "max", + "Score": 14, + "Duration": 4355.3315 }, { - "Name": "Ricou [Fr]", - "Score": 2, - "Duration": 5341.287 + "Name": "FAILEDFEMBOY", + "Score": 5, + "Duration": 4255.4614 }, { - "Name": "X--N", - "Score": 4, - "Duration": 4780.3174 + "Name": "Discommodious", + "Score": 1, + "Duration": 4017.2327 }, { - "Name": "mgray245", + "Name": "Sakas -DMC-", "Score": 1, - "Duration": 4766.5625 + "Duration": 3734.7507 }, { - "Name": "妹控", - "Score": 8, - "Duration": 4248.594 + "Name": "abog.nicolasludu", + "Score": 0, + "Duration": 3609.3848 }, { - "Name": "Green Horse", + "Name": "Atlatlatlatlatlatlatlatlist", "Score": 0, - "Duration": 4138.517 + "Duration": 3566.4148 }, { - "Name": "DUSTBOWL", - "Score": 8, - "Duration": 4120.727 + "Name": "pvt. johnson", + "Score": 2, + "Duration": 3516.9446 }, { - "Name": "[DB] Plecoman", + "Name": "", "Score": 0, - "Duration": 3593.2979 + "Duration": 3488.5647 }, { - "Name": "j-chou2", - "Score": 0, - "Duration": 3590.8228 + "Name": "Scuffed katana+9 PvP stones+4", + "Score": 3, + "Duration": 3373.0796 }, { - "Name": "linuxlove", - "Score": 8, - "Duration": 3455.7778 + "Name": "SmugEngineer", + "Score": 13, + "Duration": 3315.2246 }, { - "Name": "agent_1", + "Name": "Scharf", + "Score": 14, + "Duration": 3298.8743 + }, + { + "Name": "woxic", + "Score": 16, + "Duration": 3241.3796 + }, + { + "Name": "Danny", "Score": 2, - "Duration": 3251.733 + "Duration": 3099.2395 }, { - "Name": "Kugibat", - "Score": 20, - "Duration": 3228.9028 + "Name": "Egor Chekist", + "Score": 2, + "Duration": 3090.6592 }, { - "Name": "kanade", + "Name": "Tipper", "Score": 0, - "Duration": 3102.993 + "Duration": 3056.1748 }, { - "Name": "Yu so Kawaii | إيّاد", - "Score": 0, - "Duration": 3080.6125 + "Name": "SorcererCat", + "Score": 2, + "Duration": 2968.9792 + }, + { + "Name": "ironwall", + "Score": 15, + "Duration": 2956.5144 }, { - "Name": "Maxxuwukawaii", + "Name": "мя.Gäto", "Score": 9, - "Duration": 2785.1128 + "Duration": 2938.1545 }, { - "Name": "YHWH", - "Score": 4, - "Duration": 2777.3428 + "Name": "Kaenbyou", + "Score": 7, + "Duration": 2898.944 }, { - "Name": "Metalclaw24601", - "Score": 0, - "Duration": 2589.2388 + "Name": "beep!", + "Score": 7, + "Duration": 2817.3594 }, { - "Name": "Power", - "Score": 10, - "Duration": 2575.2588 + "Name": "puppies are damn liars", + "Score": 7, + "Duration": 2733.0251 }, { - "Name": "Malaysia Airlines Flight 370", - "Score": 2, - "Duration": 2358.8398 + "Name": "SerpentSnekko", + "Score": 6, + "Duration": 2538.227 + }, + { + "Name": "RainTimes", + "Score": 18, + "Duration": 2449.5237 }, { - "Name": "super F", + "Name": "Mew Kirby", + "Score": 10, + "Duration": 2365.154 + }, + { + "Name": "LiquidTiberium77", "Score": 5, - "Duration": 2282.865 + "Duration": 2342.8342 }, { - "Name": "obersuchti", - "Score": 2, - "Duration": 2252.8496 + "Name": "Mike Hawk", + "Score": 8, + "Duration": 2317.7842 }, { - "Name": "Iron Fox (Update-sized)", - "Score": 4, - "Duration": 2052.1348 + "Name": "Stalinus", + "Score": 11, + "Duration": 2243.194 }, { - "Name": "Ceol", - "Score": 3, - "Duration": 1996.695 + "Name": "dpy", + "Score": 5, + "Duration": 2242.1743 }, { - "Name": "Shotgun Ed", + "Name": "Cønker", + "Score": 1, + "Duration": 2235.4392 + }, + { + "Name": "vasya666", "Score": 4, - "Duration": 1897.995 + "Duration": 2230.6694 }, { - "Name": "Fasthink", - "Score": 23, - "Duration": 1879.365 + "Name": "Xray Hombre", + "Score": 9, + "Duration": 2202.154 }, { - "Name": "Andy (playing on a Deck)", + "Name": "sause", "Score": 0, - "Duration": 1860.375 + "Duration": 2073.8442 }, { - "Name": "maaxiimiiliiaan", - "Score": 4, - "Duration": 1810.95 + "Name": "Foster Kia", + "Score": 14, + "Duration": 2065.9844 }, { - "Name": "H2O | Aiii", - "Score": 8, - "Duration": 1749.6844 + "Name": "Shooterman8881", + "Score": 7, + "Duration": 2051.0286 }, { - "Name": "ꑭslayerꑭ", - "Score": 1, - "Duration": 1746.8046 + "Name": "SenSation314", + "Score": 2, + "Duration": 1806.8595 }, { - "Name": "FreeAndLit", + "Name": "PredatedElk6", + "Score": 8, + "Duration": 1785.2592 + }, + { + "Name": "-Krv Oz-", "Score": 7, - "Duration": 1681.7045 + "Duration": 1696.9663 }, { - "Name": "Noct Gar", - "Score": 9, - "Duration": 1604.8444 + "Name": "barn farts", + "Score": 4, + "Duration": 1689.4813 }, { - "Name": "caesar029", - "Score": 1, - "Duration": 1599.1444 + "Name": "Averageman", + "Score": 5, + "Duration": 1664.9712 }, { - "Name": "//HEI-HIKO", - "Score": 0, - "Duration": 1583.2747 + "Name": "Bucket Axolotl", + "Score": 5, + "Duration": 1570.6812 }, { - "Name": "contact", - "Score": 1, - "Duration": 1518.1295 + "Name": "Capitão Xorume", + "Score": 2, + "Duration": 1555.4562 }, { - "Name": "Bziim", - "Score": 8, - "Duration": 1459.3446 + "Name": "Tap_ok", + "Score": 6, + "Duration": 1468.6064 }, { - "Name": "zedd11dave", - "Score": 3, - "Duration": 1429.0594 + "Name": "scrupeeno", + "Score": 14, + "Duration": 1243.1262 }, { - "Name": "有咩留番拜山先講", - "Score": 15, - "Duration": 1357.7195 + "Name": "LTFreeBorn", + "Score": 1, + "Duration": 1234.0662 }, { - "Name": "TaterTots", + "Name": "Evil Quak", "Score": 4, - "Duration": 1191.0706 + "Duration": 1185.4512 }, { - "Name": "neptune gear", - "Score": 2, - "Duration": 1184.6205 + "Name": "yerrrwhatupp", + "Score": 7, + "Duration": 1145.0115 }, { - "Name": "aradia megido", - "Score": 2, - "Duration": 1182.4153 + "Name": "wes", + "Score": 17, + "Duration": 1134.8113 }, { - "Name": "Kaiji", - "Score": 1, - "Duration": 1158.9407 + "Name": "Mama Looigi", + "Score": 7, + "Duration": 1114.3811 }, { - "Name": "joshuarhodeshall", - "Score": 3, - "Duration": 1142.9805 + "Name": "MediaevalJulio14", + "Score": 10, + "Duration": 1061.5168 }, { - "Name": "pedroxom", + "Name": "Potato", + "Score": 17, + "Duration": 1041.5819 + }, + { + "Name": "WAAGGHH Enjoyer", "Score": 2, - "Duration": 1107.4905 + "Duration": 1017.34204 }, { - "Name": "Galen Weston Jr.", - "Score": 10, - "Duration": 1083.2351 + "Name": "Fox News at 21", + "Score": 6, + "Duration": 1013.0969 }, { - "Name": "Grave Digger", - "Score": 3, - "Duration": 1079.4106 + "Name": "KRY23", + "Score": 18, + "Duration": 982.61676 }, { - "Name": "Faith", - "Score": 5, - "Duration": 1003.82544 + "Name": "eggman (real)", + "Score": 4, + "Duration": 913.4521 }, { - "Name": "Lin", - "Score": 2, - "Duration": 958.6601 + "Name": "Fabio292", + "Score": 26, + "Duration": 816.16205 }, { - "Name": "Ex1t", - "Score": 0, - "Duration": 933.8505 + "Name": "Box", + "Score": 16, + "Duration": 782.8317 }, { - "Name": "Kokadosh", - "Score": 2, - "Duration": 893.95 + "Name": "Cappuccino シ", + "Score": 10, + "Duration": 777.3557 }, { - "Name": "meow \uD83D\uDC3E", - "Score": 7, - "Duration": 836.9804 + "Name": "Soul", + "Score": 5, + "Duration": 751.1384 }, { - "Name": "Scuffed katana+9 PvP stones+4", - "Score": 0, - "Duration": 716.65045 + "Name": "medoct", + "Score": 15, + "Duration": 746.5483 }, { - "Name": "cool ass blue dominus", - "Score": 5, - "Duration": 632.80054 + "Name": "SlopJoe", + "Score": 9, + "Duration": 728.21716 }, { - "Name": "I enjoy bullying furries", - "Score": 0, - "Duration": 616.96063 + "Name": "Wizzisaurio", + "Score": 5, + "Duration": 723.16266 }, { - "Name": "Asmodeus", + "Name": "Karnnos", "Score": 1, - "Duration": 596.5753 + "Duration": 720.208 }, { - "Name": "pipidaster131", + "Name": "joe cool", "Score": 0, - "Duration": 530.93207 + "Duration": 717.1477 }, { - "Name": "doghouse", - "Score": 4, - "Duration": 482.65485 + "Name": "OberUberWurst", + "Score": 7, + "Duration": 708.98773 }, { - "Name": "Piranha Plant", - "Score": 9, - "Duration": 473.33975 + "Name": "Caxps", + "Score": 6, + "Duration": 697.5715 }, { - "Name": "TR", - "Score": 0, - "Duration": 448.965 + "Name": "kerber_", + "Score": 5, + "Duration": 646.2303 }, { - "Name": "McBain", + "Name": "Kislotnitsa", "Score": 9, - "Duration": 427.77005 + "Duration": 634.2449 }, { - "Name": "Tarik Nakich", - "Score": 4, - "Duration": 384.78003 + "Name": "kiwi", + "Score": 13, + "Duration": 623.0246 }, { - "Name": "IsaacLQM", - "Score": 2, - "Duration": 376.85544 + "Name": "hippo kingdom", + "Score": 11, + "Duration": 618.0301 }, { - "Name": "cracoas", - "Score": 9, - "Duration": 325.00507 + "Name": "\uD83D\uDC27Linux Gaming\uD83D\uDC27", + "Score": 2, + "Duration": 584.04 }, { - "Name": "Pan", + "Name": "Slimsin", "Score": 4, - "Duration": 303.19504 + "Duration": 459.4801 }, { - "Name": "SolarHuntress", - "Score": 4, - "Duration": 276.44986 + "Name": "Pastenik", + "Score": 5, + "Duration": 448.3801 }, { - "Name": "Krauss Von Dunkel", - "Score": 3, - "Duration": 246.94507 + "Name": "MysteryFingerz", + "Score": 5, + "Duration": 419.76013 }, { - "Name": "Anglo-Tzar", - "Score": 0, - "Duration": 182.71497 + "Name": "Peace", + "Score": 2, + "Duration": 364.70972 }, { - "Name": "Europan Hookmouth", - "Score": 2, - "Duration": 164.52005 + "Name": "$1.50 costco hotdog", + "Score": 7, + "Duration": 355.36517 }, { - "Name": "Subway_Santa", + "Name": "QuackCocaine", "Score": 0, - "Duration": 163.39503 + "Duration": 321.7201 }, { - "Name": "fhtep1234", + "Name": "Pestilential", "Score": 0, - "Duration": 148.9949 + "Duration": 304.27524 }, { - "Name": "Periquito Luz", + "Name": "T I M A S", + "Score": 6, + "Duration": 243.40459 + }, + { + "Name": "Revelry", + "Score": 6, + "Duration": 241.23027 + }, + { + "Name": "Titus", + "Score": 1, + "Duration": 114.75017 + }, + { + "Name": "Ihrga", "Score": 0, - "Duration": 105.25505 + "Duration": 72.00013 }, { - "Name": "Dawk Rawk", - "Score": 2, - "Duration": 99.10493 + "Name": "davi", + "Score": 0, + "Duration": 52.079937 }, { - "Name": "big meaty claw", + "Name": "", "Score": 0, - "Duration": 88.214745 + "Duration": 5.159999 } ] \ No newline at end of file diff --git a/OpenGSQTests/Results/SourceTests/GetRulesTest.json b/OpenGSQTests/Results/SourceTests/GetRulesTest.json index 076cec5..8ad4ae9 100644 --- a/OpenGSQTests/Results/SourceTests/GetRulesTest.json +++ b/OpenGSQTests/Results/SourceTests/GetRulesTest.json @@ -58,7 +58,7 @@ "sm_afkm_version": "4.3.0", "sm_algobalance__version": "1.0.0-dev.17", "sm_autorecord_version": "1.3.0", - "sm_nextmap": "pl_cashworks", + "sm_nextmap": "cp_dustbowl", "sm_prof_version": "1.1", "sm_sourcesleuth_version": "1.8.0", "sm_spray_version": "1.3.8", @@ -67,7 +67,7 @@ "sm_tidychat_version": "0.5", "sourcecomms_version": "1.8.0", "sourcemod_version": "1.12.0.7101", - "stripper_current_file": "pl_pier", + "stripper_current_file": "koth_los_muertos", "stripper_version": "1.2.2", "sv_accelerate": "10", "sv_airaccelerate": "10", @@ -94,7 +94,7 @@ "sv_steamgroup": "", "sv_stepsize": "18", "sv_stopspeed": "100", - "sv_tags": "alltalk,increased_maxplayers,payload,shounic", + "sv_tags": "alltalk,cp,increased_maxplayers,shounic", "sv_voiceenable": "1", "sv_vote_quorum_ratio": "0.6", "sv_wateraccelerate": "10", @@ -119,12 +119,12 @@ "tf_force_holidays_off": "0", "tf_gamemode_arena": "0", "tf_gamemode_community": "0", - "tf_gamemode_cp": "0", + "tf_gamemode_cp": "1", "tf_gamemode_ctf": "0", "tf_gamemode_misc": "0", "tf_gamemode_mvm": "0", "tf_gamemode_passtime": "0", - "tf_gamemode_payload": "1", + "tf_gamemode_payload": "0", "tf_gamemode_pd": "0", "tf_gamemode_rd": "0", "tf_gamemode_sd": "0", diff --git a/OpenGSQTests/Results/TeamSpeak3Tests/GetChannelsTest.json b/OpenGSQTests/Results/TeamSpeak3Tests/GetChannelsTest.json index 72a358d..c444612 100644 --- a/OpenGSQTests/Results/TeamSpeak3Tests/GetChannelsTest.json +++ b/OpenGSQTests/Results/TeamSpeak3Tests/GetChannelsTest.json @@ -77,7 +77,7 @@ "channel_order": "0", "channel_name": "Welcome | Rules in Channel Description", "channel_topic": "", - "total_clients": "9", + "total_clients": "10", "channel_needed_subscribe_power": "0" }, { @@ -86,7 +86,7 @@ "channel_order": "122", "channel_name": "Lobby 1", "channel_topic": "", - "total_clients": "3", + "total_clients": "5", "channel_needed_subscribe_power": "0" }, { @@ -104,7 +104,7 @@ "channel_order": "43", "channel_name": "Lobby 3", "channel_topic": "", - "total_clients": "3", + "total_clients": "2", "channel_needed_subscribe_power": "0" }, { @@ -122,7 +122,7 @@ "channel_order": "605", "channel_name": "Lobby 5", "channel_topic": "We'll eat your tendies", - "total_clients": "0", + "total_clients": "2", "channel_needed_subscribe_power": "0" }, { @@ -131,7 +131,7 @@ "channel_order": "127", "channel_name": "Lobby 6", "channel_topic": "", - "total_clients": "1", + "total_clients": "2", "channel_needed_subscribe_power": "0" }, { @@ -140,7 +140,7 @@ "channel_order": "128", "channel_name": "Lobby 7", "channel_topic": "", - "total_clients": "0", + "total_clients": "1", "channel_needed_subscribe_power": "0" }, { @@ -149,7 +149,7 @@ "channel_order": "338", "channel_name": "Lobby 8", "channel_topic": "Sheep Shaggers United", - "total_clients": "0", + "total_clients": "1", "channel_needed_subscribe_power": "0" }, { @@ -158,7 +158,7 @@ "channel_order": "714", "channel_name": "Lobby 9", "channel_topic": "", - "total_clients": "0", + "total_clients": "2", "channel_needed_subscribe_power": "0" }, { @@ -167,7 +167,7 @@ "channel_order": "802", "channel_name": "Lobby 10", "channel_topic": "", - "total_clients": "0", + "total_clients": "1", "channel_needed_subscribe_power": "0" }, { @@ -176,7 +176,7 @@ "channel_order": "959", "channel_name": "Lobby 11", "channel_topic": "", - "total_clients": "0", + "total_clients": "2", "channel_needed_subscribe_power": "0" }, { @@ -257,7 +257,7 @@ "channel_order": "1208", "channel_name": "German", "channel_topic": "", - "total_clients": "0", + "total_clients": "2", "channel_needed_subscribe_power": "0" }, { @@ -401,7 +401,7 @@ "channel_order": "213", "channel_name": "Counter Strike", "channel_topic": "", - "total_clients": "0", + "total_clients": "2", "channel_needed_subscribe_power": "0" }, { @@ -527,7 +527,7 @@ "channel_order": "246", "channel_name": "VALORANT", "channel_topic": "", - "total_clients": "1", + "total_clients": "3", "channel_needed_subscribe_power": "0" }, { @@ -572,7 +572,7 @@ "channel_order": "740", "channel_name": "PUBG", "channel_topic": "", - "total_clients": "0", + "total_clients": "1", "channel_needed_subscribe_power": "0" }, { @@ -869,7 +869,7 @@ "channel_order": "637", "channel_name": "Hollywood", "channel_topic": "pornhub gang", - "total_clients": "4", + "total_clients": "1", "channel_needed_subscribe_power": "0" }, { @@ -1004,7 +1004,7 @@ "channel_order": "1539", "channel_name": "shemale", "channel_topic": "", - "total_clients": "1", + "total_clients": "0", "channel_needed_subscribe_power": "0" }, { @@ -1112,7 +1112,7 @@ "channel_order": "1654", "channel_name": "BigBois", "channel_topic": "", - "total_clients": "0", + "total_clients": "2", "channel_needed_subscribe_power": "0" }, { @@ -1139,7 +1139,7 @@ "channel_order": "1674", "channel_name": "JUU zavod za distroficare", "channel_topic": "", - "total_clients": "5", + "total_clients": "3", "channel_needed_subscribe_power": "0" }, { @@ -1184,7 +1184,7 @@ "channel_order": "1703", "channel_name": "AFK", "channel_topic": "", - "total_clients": "3", + "total_clients": "0", "channel_needed_subscribe_power": "0" }, { @@ -1292,7 +1292,7 @@ "channel_order": "1744", "channel_name": "Panolypse", "channel_topic": "", - "total_clients": "2", + "total_clients": "0", "channel_needed_subscribe_power": "0" }, { @@ -1310,7 +1310,7 @@ "channel_order": "1761", "channel_name": "Valo_EZ_Immo", "channel_topic": "Boosting Haris", - "total_clients": "0", + "total_clients": "5", "channel_needed_subscribe_power": "0" }, { @@ -1319,7 +1319,7 @@ "channel_order": "1763", "channel_name": "modric fan club", "channel_topic": "", - "total_clients": "2", + "total_clients": "3", "channel_needed_subscribe_power": "0" }, { @@ -1355,7 +1355,7 @@ "channel_order": "1801", "channel_name": "//////////// Fucken Pubg /////////////", "channel_topic": "", - "total_clients": "4", + "total_clients": "0", "channel_needed_subscribe_power": "0" }, { @@ -1364,7 +1364,7 @@ "channel_order": "1803", "channel_name": "___Lobotom______FORTNAJŤÁK_JE_BUZNA_____", "channel_topic": "", - "total_clients": "2", + "total_clients": "1", "channel_needed_subscribe_power": "0" }, { @@ -1400,7 +1400,7 @@ "channel_order": "1820", "channel_name": "SLEPPYSAMSEPISLEPPYSAMSEPI", "channel_topic": "", - "total_clients": "0", + "total_clients": "2", "channel_needed_subscribe_power": "0" }, { @@ -1436,7 +1436,7 @@ "channel_order": "1827", "channel_name": "Nima and Rofaqa", "channel_topic": "League Of Legends", - "total_clients": "2", + "total_clients": "1", "channel_needed_subscribe_power": "0" }, { @@ -1463,7 +1463,7 @@ "channel_order": "1877", "channel_name": "MABAR 2", "channel_topic": "GFR SELALU DIHATIKU", - "total_clients": "6", + "total_clients": "0", "channel_needed_subscribe_power": "0" }, { @@ -1562,7 +1562,7 @@ "channel_order": "1875", "channel_name": "Feds' Channel", "channel_topic": "", - "total_clients": "3", + "total_clients": "0", "channel_needed_subscribe_power": "0" }, { @@ -1616,7 +1616,7 @@ "channel_order": "1885", "channel_name": "Finiti e spolverati", "channel_topic": "", - "total_clients": "2", + "total_clients": "0", "channel_needed_subscribe_power": "0" }, { @@ -1697,7 +1697,7 @@ "channel_order": "1895", "channel_name": "UKM", "channel_topic": "", - "total_clients": "0", + "total_clients": "3", "channel_needed_subscribe_power": "0" }, { @@ -1724,7 +1724,7 @@ "channel_order": "1899", "channel_name": "Arma", "channel_topic": "", - "total_clients": "0", + "total_clients": "3", "channel_needed_subscribe_power": "0" }, { @@ -1742,7 +1742,7 @@ "channel_order": "1901", "channel_name": "Dlopez", "channel_topic": "", - "total_clients": "0", + "total_clients": "2", "channel_needed_subscribe_power": "0" }, { @@ -1769,7 +1769,16 @@ "channel_order": "1906", "channel_name": "Rambazamba", "channel_topic": "", - "total_clients": "2", + "total_clients": "1", + "channel_needed_subscribe_power": "0" + }, + { + "cid": "1909", + "pid": "17", + "channel_order": "1907", + "channel_name": "vandagr Hole", + "channel_topic": "", + "total_clients": "0", "channel_needed_subscribe_power": "0" }, { diff --git a/OpenGSQTests/Results/TeamSpeak3Tests/GetClientsTest.json b/OpenGSQTests/Results/TeamSpeak3Tests/GetClientsTest.json index b6e8153..b39c047 100644 --- a/OpenGSQTests/Results/TeamSpeak3Tests/GetClientsTest.json +++ b/OpenGSQTests/Results/TeamSpeak3Tests/GetClientsTest.json @@ -1,331 +1,401 @@ [ { - "clid": "41542", + "clid": "53712", + "cid": "122", + "client_database_id": "56950", + "client_nickname": "Unknown", + "client_type": "1" + }, + { + "clid": "53688", + "cid": "1763", + "client_database_id": "66041", + "client_nickname": "Valo", + "client_type": "0" + }, + { + "clid": "53637", + "cid": "1664", + "client_database_id": "63780", + "client_nickname": "Turnips", + "client_type": "0" + }, + { + "clid": "53602", "cid": "1222", "client_database_id": "62618", "client_nickname": "mik3", "client_type": "0" }, { - "clid": "41540", - "cid": "1828", - "client_database_id": "76003", - "client_nickname": "TeamSpeakUser11", + "clid": "53530", + "cid": "1763", + "client_database_id": "76161", + "client_nickname": "mynechan", "client_type": "0" }, { - "clid": "41534", - "cid": "1313", - "client_database_id": "67819", - "client_nickname": "Farki", + "clid": "53435", + "cid": "1763", + "client_database_id": "65868", + "client_nickname": "DK7206", "client_type": "0" }, { - "clid": "41494", - "cid": "122", - "client_database_id": "67818", + "clid": "53362", + "cid": "1897", + "client_database_id": "75928", + "client_nickname": "TeamSpeakUser2", + "client_type": "0" + }, + { + "clid": "53324", + "cid": "1210", + "client_database_id": "72460", + "client_nickname": "TeamSpeakUser4", + "client_type": "0" + }, + { + "clid": "53316", + "cid": "1210", + "client_database_id": "75542", "client_nickname": "TeamSpeakUser3", "client_type": "0" }, { - "clid": "41460", - "cid": "1803", - "client_database_id": "75748", - "client_nickname": "PorshB", + "clid": "53252", + "cid": "1907", + "client_database_id": "77145", + "client_nickname": "zeuskeks", "client_type": "0" }, { - "clid": "41458", - "cid": "1828", - "client_database_id": "73733", - "client_nickname": "Gripex", + "clid": "53224", + "cid": "208", + "client_database_id": "61192", + "client_nickname": "Bucky", "client_type": "0" }, { - "clid": "41415", - "cid": "1803", - "client_database_id": "77284", - "client_nickname": "moomn", + "clid": "53590", + "cid": "122", + "client_database_id": "77482", + "client_nickname": "Madjack", "client_type": "0" }, { - "clid": "41386", - "cid": "1803", - "client_database_id": "76924", - "client_nickname": "Matt", + "clid": "53193", + "cid": "873", + "client_database_id": "36502", + "client_nickname": "conrad", "client_type": "0" }, { - "clid": "41385", - "cid": "50", - "client_database_id": "77006", - "client_nickname": "Hebe", + "clid": "53130", + "cid": "1206", + "client_database_id": "74000", + "client_nickname": "scorpionvnt", "client_type": "0" }, { - "clid": "41358", - "cid": "605", - "client_database_id": "75973", - "client_nickname": "Püppi", + "clid": "53126", + "cid": "1206", + "client_database_id": "77021", + "client_nickname": "taylev", "client_type": "0" }, { - "clid": "41323", - "cid": "1886", - "client_database_id": "54014", - "client_nickname": "cesco", + "clid": "53113", + "cid": "818", + "client_database_id": "68305", + "client_nickname": "chi", "client_type": "0" }, { - "clid": "41320", - "cid": "1886", - "client_database_id": "76370", - "client_nickname": "erclaudio", + "clid": "53100", + "cid": "959", + "client_database_id": "75707", + "client_nickname": "Masel", "client_type": "0" }, { - "clid": "41313", - "cid": "43", - "client_database_id": "74940", - "client_nickname": "Foxik", + "clid": "53099", + "cid": "1846", + "client_database_id": "77523", + "client_nickname": "Helix1305", "client_type": "0" }, { - "clid": "41291", + "clid": "53091", "cid": "1", - "client_database_id": "32290", - "client_nickname": "210", + "client_database_id": "5921", + "client_nickname": "GreyGhost", "client_type": "0" }, { - "clid": "41242", - "cid": "1878", - "client_database_id": "74421", - "client_nickname": "TeamSpeakUser", + "clid": "53087", + "cid": "1846", + "client_database_id": "77398", + "client_nickname": "BuaghRoche/ABi", "client_type": "0" }, { - "clid": "41208", - "cid": "50", - "client_database_id": "77009", - "client_nickname": "Thug", + "clid": "53061", + "cid": "1821", + "client_database_id": "77403", + "client_nickname": "sleppy", "client_type": "0" }, { - "clid": "41187", - "cid": "43", - "client_database_id": "66099", - "client_nickname": "Сергей", + "clid": "53022", + "cid": "714", + "client_database_id": "77007", + "client_nickname": "Sir Lanzelot", "client_type": "0" }, { - "clid": "41096", - "cid": "1878", - "client_database_id": "76716", - "client_nickname": "waalaweee", + "clid": "52997", + "cid": "1222", + "client_database_id": "73388", + "client_nickname": "GROVER", "client_type": "0" }, { - "clid": "41083", - "cid": "1767", - "client_database_id": "76045", - "client_nickname": "FitymaHarcos", + "clid": "52995", + "cid": "1900", + "client_database_id": "72542", + "client_nickname": "SGT Persival", "client_type": "0" }, { - "clid": "41064", - "cid": "1540", - "client_database_id": "60799", - "client_nickname": "cambhoy", + "clid": "52947", + "cid": "1313", + "client_database_id": "67818", + "client_nickname": "TeamSpeakUser31", "client_type": "0" }, { - "clid": "41058", - "cid": "1878", - "client_database_id": "76050", - "client_nickname": "`Hal`Biasa`ko`", + "clid": "52898", + "cid": "128", + "client_database_id": "76328", + "client_nickname": "Samhael246", "client_type": "0" }, { - "clid": "40985", - "cid": "1878", - "client_database_id": "74421", - "client_nickname": "NONAME", + "clid": "52835", + "cid": "1", + "client_database_id": "25219", + "client_nickname": "Hooty1", "client_type": "0" }, { - "clid": "40932", - "cid": "1878", - "client_database_id": "74424", - "client_nickname": "iBOSS", + "clid": "52820", + "cid": "1767", + "client_database_id": "71818", + "client_nickname": "Mikrofon", "client_type": "0" }, { - "clid": "40920", - "cid": "1206", - "client_database_id": "55739", - "client_nickname": "Thiago - REEED", + "clid": "52803", + "cid": "1897", + "client_database_id": "76904", + "client_nickname": "shrns", "client_type": "0" }, { - "clid": "40897", - "cid": "128", - "client_database_id": "77490", - "client_nickname": "Ripper (KiKe)", + "clid": "52802", + "cid": "1767", + "client_database_id": "76045", + "client_nickname": "FitymaHarcos", "client_type": "0" }, { - "clid": "40886", - "cid": "745", - "client_database_id": "28790", - "client_nickname": "[deamon]", + "clid": "52785", + "cid": "1679", + "client_database_id": "54772", + "client_nickname": "toobigtosee", "client_type": "0" }, { - "clid": "40803", - "cid": "1679", - "client_database_id": "71571", - "client_nickname": "ShortOne", + "clid": "52783", + "cid": "50", + "client_database_id": "73684", + "client_nickname": "Halnik", "client_type": "0" }, { - "clid": "40739", - "cid": "1754", - "client_database_id": "49430", - "client_nickname": "Guizmeau", + "clid": "52760", + "cid": "50", + "client_database_id": "77215", + "client_nickname": "Demizon", "client_type": "0" }, { - "clid": "40682", - "cid": "1907", - "client_database_id": "77147", - "client_nickname": "ErlAug", + "clid": "52747", + "cid": "1897", + "client_database_id": "77033", + "client_nickname": "TeamSpeakUser1", "client_type": "0" }, { - "clid": "40609", - "cid": "1876", - "client_database_id": "77341", - "client_nickname": "theokaram", + "clid": "52654", + "cid": "1767", + "client_database_id": "70108", + "client_nickname": "mehmet\uD83D\uDC4D", "client_type": "0" }, { - "clid": "40579", - "cid": "1907", - "client_database_id": "77145", - "client_nickname": "zeuskeks", + "clid": "52616", + "cid": "802", + "client_database_id": "75052", + "client_nickname": "Oh My", "client_type": "0" }, { - "clid": "40547", - "cid": "745", - "client_database_id": "65668", - "client_nickname": "brikulosak1", + "clid": "52582", + "cid": "1679", + "client_database_id": "76305", + "client_nickname": "kmalbasic", "client_type": "0" }, { - "clid": "41299", - "cid": "873", - "client_database_id": "36502", - "client_nickname": "conrad", + "clid": "52327", + "cid": "1902", + "client_database_id": "76553", + "client_nickname": "st.petersburg", "client_type": "0" }, { - "clid": "40495", - "cid": "1876", - "client_database_id": "68469", - "client_nickname": "Dandoun", + "clid": "52309", + "cid": "1313", + "client_database_id": "73941", + "client_nickname": "TeamSpeakUser", "client_type": "0" }, { - "clid": "40419", - "cid": "745", - "client_database_id": "66679", - "client_nickname": "aleš", + "clid": "52239", + "cid": "1828", + "client_database_id": "73733", + "client_nickname": "Gripex", "client_type": "0" }, { - "clid": "40322", - "cid": "1528", - "client_database_id": "56641", - "client_nickname": "Bazyl.", + "clid": "52612", + "cid": "802", + "client_database_id": "72495", + "client_nickname": "Turek", "client_type": "0" }, { - "clid": "40019", - "cid": "1704", - "client_database_id": "76182", - "client_nickname": "CasBah_2016", + "clid": "52215", + "cid": "338", + "client_database_id": "71422", + "client_nickname": "lHelL", "client_type": "0" }, { - "clid": "39973", - "cid": "1754", - "client_database_id": "49284", - "client_nickname": "Hexako", + "clid": "52182", + "cid": "43", + "client_database_id": "74940", + "client_nickname": "Foxik", "client_type": "0" }, { - "clid": "39955", - "cid": "1767", - "client_database_id": "73830", - "client_nickname": "kriszcs1", + "clid": "52150", + "cid": "1900", + "client_database_id": "77471", + "client_nickname": "PVT Monah", "client_type": "0" }, { - "clid": "39895", - "cid": "1704", - "client_database_id": "67150", - "client_nickname": "nomax", + "clid": "53132", + "cid": "122", + "client_database_id": "73041", + "client_nickname": "TeamSpeakUser5", "client_type": "0" }, { - "clid": "39645", + "clid": "51941", "cid": "1679", - "client_database_id": "54773", - "client_nickname": "OganjKaramel", + "client_database_id": "54781", + "client_nickname": "todorovic", "client_type": "0" }, { - "clid": "40348", - "cid": "1206", - "client_database_id": "71422", - "client_nickname": "lHelL", + "clid": "51885", + "cid": "1902", + "client_database_id": "77221", + "client_nickname": "hans", "client_type": "0" }, { - "clid": "39554", - "cid": "1679", - "client_database_id": "54771", - "client_nickname": "Gagi", + "clid": "53027", + "cid": "1763", + "client_database_id": "65945", + "client_nickname": "Blynk", "client_type": "0" }, { - "clid": "38846", - "cid": "1704", - "client_database_id": "69737", - "client_nickname": "BaLoLa", + "clid": "51439", + "cid": "1313", + "client_database_id": "67819", + "client_nickname": "Farki", "client_type": "0" }, { - "clid": "38018", - "cid": "122", + "clid": "51376", + "cid": "1528", + "client_database_id": "56641", + "client_nickname": "Bazyl.", + "client_type": "0" + }, + { + "clid": "51088", + "cid": "1900", + "client_database_id": "71996", + "client_nickname": "LTC John Eagles", + "client_type": "0" + }, + { + "clid": "50541", + "cid": "10", "client_database_id": "2", - "client_nickname": "Echo4191", + "client_nickname": "RankBot1", "client_type": "1" }, { - "clid": "40610", - "cid": "745", - "client_database_id": "28794", - "client_nickname": "gamefir", + "clid": "50280", + "cid": "1528", + "client_database_id": "67733", + "client_nickname": "Dylan", "client_type": "0" }, { - "clid": "26819", - "cid": "10", + "clid": "50190", + "cid": "605", + "client_database_id": "77350", + "client_nickname": "Vlad", + "client_type": "0" + }, + { + "clid": "45352", + "cid": "1", + "client_database_id": "25219", + "client_nickname": "Hooty", + "client_type": "0" + }, + { + "clid": "41291", + "cid": "1", + "client_database_id": "32290", + "client_nickname": "210", + "client_type": "0" + }, + { + "clid": "38018", + "cid": "122", "client_database_id": "2", - "client_nickname": "RankBot", + "client_nickname": "Echo4191", "client_type": "1" }, { @@ -377,6 +447,13 @@ "client_nickname": "Cav", "client_type": "0" }, + { + "clid": "52552", + "cid": "127", + "client_database_id": "76156", + "client_nickname": "бабуля", + "client_type": "0" + }, { "clid": "23174", "cid": "1372", @@ -384,6 +461,13 @@ "client_nickname": "NubCake", "client_type": "0" }, + { + "clid": "52166", + "cid": "43", + "client_database_id": "66099", + "client_nickname": "Сергей", + "client_type": "0" + }, { "clid": "23185", "cid": "1372", @@ -398,13 +482,6 @@ "client_nickname": "Echo419", "client_type": "0" }, - { - "clid": "5117", - "cid": "1", - "client_database_id": "25896", - "client_nickname": "M1™", - "client_type": "0" - }, { "clid": "56220", "cid": "1654", @@ -433,13 +510,6 @@ "client_nickname": "Baguette", "client_type": "0" }, - { - "clid": "35603", - "cid": "1679", - "client_database_id": "76305", - "client_nickname": "kmalbasic", - "client_type": "0" - }, { "clid": "48704", "cid": "10", @@ -461,13 +531,6 @@ "client_nickname": "Alfons", "client_type": "0" }, - { - "clid": "41267", - "cid": "1815", - "client_database_id": "73326", - "client_nickname": "Holina88", - "client_type": "0" - }, { "clid": "44840", "cid": "1539", @@ -483,10 +546,10 @@ "client_type": "0" }, { - "clid": "40868", - "cid": "1222", - "client_database_id": "73388", - "client_nickname": "GROVER", + "clid": "52778", + "cid": "605", + "client_database_id": "72281", + "client_nickname": "XoRneT1", "client_type": "0" }, { @@ -503,6 +566,13 @@ "client_nickname": "Mike Ashley", "client_type": "0" }, + { + "clid": "53570", + "cid": "1664", + "client_database_id": "63779", + "client_nickname": "Aggressive Sloth", + "client_type": "0" + }, { "clid": "44836", "cid": "1539", @@ -545,6 +615,13 @@ "client_nickname": "EricAFK", "client_type": "0" }, + { + "clid": "53167", + "cid": "208", + "client_database_id": "61753", + "client_nickname": "Hail Hail", + "client_type": "0" + }, { "clid": "44830", "cid": "122", @@ -552,13 +629,6 @@ "client_nickname": "VoteBot", "client_type": "0" }, - { - "clid": "41173", - "cid": "1876", - "client_database_id": "77502", - "client_nickname": "Lkaram", - "client_type": "0" - }, { "clid": "24499", "cid": "1535", @@ -566,13 +636,6 @@ "client_nickname": "FuzzyKripp", "client_type": "0" }, - { - "clid": "41568", - "cid": "122", - "client_database_id": "56950", - "client_nickname": "Unknown", - "client_type": "1" - }, { "clid": "24497", "cid": "1535", @@ -650,6 +713,13 @@ "client_nickname": "poop", "client_type": "0" }, + { + "clid": "52711", + "cid": "127", + "client_database_id": "76121", + "client_nickname": "Акогданебабуля", + "client_type": "0" + }, { "clid": "10629", "cid": "1654", @@ -657,6 +727,13 @@ "client_nickname": "bochek", "client_type": "0" }, + { + "clid": "53465", + "cid": "745", + "client_database_id": "28794", + "client_nickname": "gamefir", + "client_type": "0" + }, { "clid": "48701", "cid": "10", @@ -685,13 +762,6 @@ "client_nickname": "Dubstep", "client_type": "0" }, - { - "clid": "41048", - "cid": "1878", - "client_database_id": "74422", - "client_nickname": "yulaw", - "client_type": "0" - }, { "clid": "23183", "cid": "1372", @@ -713,13 +783,6 @@ "client_nickname": "The Acid Man", "client_type": "0" }, - { - "clid": "41401", - "cid": "1803", - "client_database_id": "71701", - "client_nickname": "Bibo2018", - "client_type": "0" - }, { "clid": "23933", "cid": "1567", @@ -797,13 +860,6 @@ "client_nickname": "Metal", "client_type": "0" }, - { - "clid": "41391", - "cid": "1815", - "client_database_id": "71338", - "client_nickname": "Oli_CZ", - "client_type": "0" - }, { "clid": "23923", "cid": "1567", @@ -825,13 +881,6 @@ "client_nickname": "FDP^Olaf", "client_type": "0" }, - { - "clid": "41348", - "cid": "605", - "client_database_id": "75972", - "client_nickname": "patte3001@gmx.de", - "client_type": "0" - }, { "clid": "60", "cid": "122", @@ -846,6 +895,13 @@ "client_nickname": "sauna", "client_type": "0" }, + { + "clid": "52891", + "cid": "128", + "client_database_id": "76331", + "client_nickname": "pattty", + "client_type": "0" + }, { "clid": "90", "cid": "1564", @@ -867,6 +923,13 @@ "client_nickname": "PiP", "client_type": "0" }, + { + "clid": "52887", + "cid": "1815", + "client_database_id": "73326", + "client_nickname": "Holina88", + "client_type": "0" + }, { "clid": "86", "cid": "1564", @@ -881,13 +944,6 @@ "client_nickname": "Marnie", "client_type": "0" }, - { - "clid": "40577", - "cid": "1679", - "client_database_id": "54781", - "client_nickname": "todorovic", - "client_type": "0" - }, { "clid": "83", "cid": "1546", @@ -916,6 +972,13 @@ "client_nickname": "Julia", "client_type": "0" }, + { + "clid": "53275", + "cid": "1763", + "client_database_id": "74380", + "client_nickname": "Acnologia69", + "client_type": "0" + }, { "clid": "77", "cid": "1564", @@ -951,13 +1014,6 @@ "client_nickname": "owo", "client_type": "0" }, - { - "clid": "41351", - "cid": "50", - "client_database_id": "77007", - "client_nickname": "Sir Lanzelot", - "client_type": "0" - }, { "clid": "63", "cid": "1263", @@ -979,13 +1035,6 @@ "client_nickname": "kawaii", "client_type": "0" }, - { - "clid": "40120", - "cid": "1528", - "client_database_id": "67733", - "client_nickname": "Dylan", - "client_type": "0" - }, { "clid": "23", "cid": "865", @@ -993,6 +1042,13 @@ "client_nickname": "WelcomeBot", "client_type": "0" }, + { + "clid": "53616", + "cid": "1821", + "client_database_id": "77404", + "client_nickname": "samsepi1", + "client_type": "0" + }, { "clid": "21", "cid": "1790", diff --git a/OpenGSQTests/Results/TeamSpeak3Tests/GetInfoTest.json b/OpenGSQTests/Results/TeamSpeak3Tests/GetInfoTest.json index bb6c9c0..db2ea8e 100644 --- a/OpenGSQTests/Results/TeamSpeak3Tests/GetInfoTest.json +++ b/OpenGSQTests/Results/TeamSpeak3Tests/GetInfoTest.json @@ -6,10 +6,10 @@ "virtualserver_version": "3.13.7 [Build: 1655727713]", "virtualserver_maxclients": "512", "virtualserver_password": "", - "virtualserver_clientsonline": "147", - "virtualserver_channelsonline": "199", + "virtualserver_clientsonline": "156", + "virtualserver_channelsonline": "200", "virtualserver_created": "1354223623", - "virtualserver_uptime": "893480", + "virtualserver_uptime": "993082", "virtualserver_codec_encryption_mode": "2", "virtualserver_hostmessage": "[b]Hey! If you enjoy this server [URL=https://teamspeak-servers.org/server/6231/vote/]please vote here![/URL][/b]", "virtualserver_hostmessage_mode": "1", @@ -32,17 +32,17 @@ "virtualserver_antiflood_points_tick_reduce": "30", "virtualserver_antiflood_points_needed_command_block": "300", "virtualserver_antiflood_points_needed_ip_block": "3000", - "virtualserver_client_connections": "4004", - "virtualserver_query_client_connections": "103006", + "virtualserver_client_connections": "4451", + "virtualserver_query_client_connections": "114686", "virtualserver_hostbutton_tooltip": "SameTeem", "virtualserver_hostbutton_url": "https://sameteem.com/", "virtualserver_hostbutton_gfx_url": "https://sameteem.com/images/STSmall.png", "virtualserver_queryclientsonline": "3", "virtualserver_download_quota": "18446744073709551615", "virtualserver_upload_quota": "18446744073709551615", - "virtualserver_month_bytes_downloaded": "400961386", + "virtualserver_month_bytes_downloaded": "420280215", "virtualserver_month_bytes_uploaded": "1304460", - "virtualserver_total_bytes_downloaded": "1723972454612", + "virtualserver_total_bytes_downloaded": "1723991773441", "virtualserver_total_bytes_uploaded": "1287097939993", "virtualserver_port": "9987", "virtualserver_autostart": "1", @@ -58,11 +58,11 @@ "virtualserver_name_phonetic": "SameTeemSpeek", "virtualserver_icon_id": "274103382", "virtualserver_reserved_slots": "8", - "virtualserver_total_packetloss_speech": "21.0045", - "virtualserver_total_packetloss_keepalive": "0.5009", - "virtualserver_total_packetloss_control": "0.2516", - "virtualserver_total_packetloss_total": "0.0047", - "virtualserver_total_ping": "64.8542", + "virtualserver_total_packetloss_speech": "19.7683", + "virtualserver_total_packetloss_keepalive": "0.4745", + "virtualserver_total_packetloss_control": "0.2390", + "virtualserver_total_packetloss_total": "0.0038", + "virtualserver_total_ping": "61.6928", "virtualserver_ip": "0.0.0.0, ::", "virtualserver_weblist_enabled": "0", "virtualserver_ask_for_privilegekey": "0", @@ -77,26 +77,26 @@ "virtualserver_status": "online", "connection_filetransfer_bandwidth_sent": "0", "connection_filetransfer_bandwidth_received": "0", - "connection_filetransfer_bytes_sent_total": "183461864", + "connection_filetransfer_bytes_sent_total": "202787332", "connection_filetransfer_bytes_received_total": "746488", - "connection_packets_sent_speech": "387679238", - "connection_bytes_sent_speech": "55595833233", - "connection_packets_received_speech": "433595427", - "connection_bytes_received_speech": "75972906583", - "connection_packets_sent_keepalive": "212176145", - "connection_bytes_sent_keepalive": "8699221945", - "connection_packets_received_keepalive": "212030781", - "connection_bytes_received_keepalive": "8907836413", - "connection_packets_sent_control": "117653714", - "connection_bytes_sent_control": "26560003336", - "connection_packets_received_control": "117481781", - "connection_bytes_received_control": "9182537821", - "connection_packets_sent_total": "717509097", - "connection_bytes_sent_total": "90855058514", - "connection_packets_received_total": "763107989", - "connection_bytes_received_total": "94063280817", - "connection_bandwidth_sent_last_second_total": "179907", - "connection_bandwidth_sent_last_minute_total": "143662", - "connection_bandwidth_received_last_second_total": "181456", - "connection_bandwidth_received_last_minute_total": "140052" + "connection_packets_sent_speech": "427999465", + "connection_bytes_sent_speech": "60796813162", + "connection_packets_received_speech": "482567406", + "connection_bytes_received_speech": "84118889830", + "connection_packets_sent_keepalive": "235852760", + "connection_bytes_sent_keepalive": "9669963160", + "connection_packets_received_keepalive": "235696249", + "connection_bytes_received_keepalive": "9902068537", + "connection_packets_sent_control": "130838693", + "connection_bytes_sent_control": "29550041852", + "connection_packets_received_control": "130648778", + "connection_bytes_received_control": "10213383583", + "connection_packets_sent_total": "794690918", + "connection_bytes_sent_total": "100016818174", + "connection_packets_received_total": "848912433", + "connection_bytes_received_total": "104234341950", + "connection_bandwidth_sent_last_second_total": "230104", + "connection_bandwidth_sent_last_minute_total": "191579", + "connection_bandwidth_received_last_second_total": "150831", + "connection_bandwidth_received_last_minute_total": "156780" } \ No newline at end of file diff --git a/OpenGSQTests/Results/Unreal2Tests/GetDetailsTest.json b/OpenGSQTests/Results/Unreal2Tests/GetDetailsTest.json index de0d625..6dea620 100644 --- a/OpenGSQTests/Results/Unreal2Tests/GetDetailsTest.json +++ b/OpenGSQTests/Results/Unreal2Tests/GetDetailsTest.json @@ -5,10 +5,10 @@ "QueryPort": 0, "ServerName": "Uliunai.lt|[v1065]|HOE/Suicidal/Hard|150 LvL|+6 Perks", "MapName": "", - "GameType": "KF-Dark_Underground-EDIT", + "GameType": "KF-No_MercyIII_FIX", "NumPlayers": 1195592971, "MaxPlayers": 1415933281, "Ping": 6647929, - "Flags": 1, + "Flags": 0, "Skill": "" } \ No newline at end of file diff --git a/OpenGSQTests/Results/Unreal2Tests/GetPlayersTest.json b/OpenGSQTests/Results/Unreal2Tests/GetPlayersTest.json index 9fd0e4b..c82d20a 100644 --- a/OpenGSQTests/Results/Unreal2Tests/GetPlayersTest.json +++ b/OpenGSQTests/Results/Unreal2Tests/GetPlayersTest.json @@ -1,9 +1,30 @@ [ { - "Id": 81, - "Name": "[RUS]Fluffi", - "Ping": 80, - "Score": 3413, + "Id": 5, + "Name": "[LTU]GrafasNasarnika", + "Ping": 52, + "Score": 2205, + "StatsId": 536870912 + }, + { + "Id": 4, + "Name": "Forex", + "Ping": 64, + "Score": 2096, + "StatsId": 536870912 + }, + { + "Id": 3, + "Name": "H_a_n_a_b_i", + "Ping": 36, + "Score": 2007, + "StatsId": 536870912 + }, + { + "Id": 2, + "Name": "Полковник_Р", + "Ping": 60, + "Score": 2905, "StatsId": 536870912 } ] \ No newline at end of file diff --git a/OpenGSQTests/Results/WONTests/GetInfoTest.json b/OpenGSQTests/Results/WONTests/GetInfoTest.json index 6315c95..e8e975a 100644 --- a/OpenGSQTests/Results/WONTests/GetInfoTest.json +++ b/OpenGSQTests/Results/WONTests/GetInfoTest.json @@ -9,7 +9,7 @@ "DLL": 1, "Protocol": 46, "Name": "[Murka] NEW CS1.5 DeathMatch s4ke murka-terroristka.de", - "Map": "de_nuke", + "Map": "de_vertigo", "Folder": "cstrike", "Game": "CounterStrike", "Players": 6, diff --git a/OpenGSQTests/Results/WONTests/GetPlayersTest.json b/OpenGSQTests/Results/WONTests/GetPlayersTest.json index bb7fc26..5560b66 100644 --- a/OpenGSQTests/Results/WONTests/GetPlayersTest.json +++ b/OpenGSQTests/Results/WONTests/GetPlayersTest.json @@ -1,32 +1,32 @@ [ { "Name": "[P*D]Sean_Connery (21)", - "Score": 2, - "Duration": 484893.47 + "Score": 0, + "Duration": 584484.2 }, { "Name": "[P0D]Jim_Carrey (41)", - "Score": 0, - "Duration": 484893.47 + "Score": 1, + "Duration": 584484.2 }, { "Name": "[POD]George_Clooney (61)", "Score": 3, - "Duration": 484893.47 + "Duration": 584484.2 }, { "Name": "[P*D]Pseudolukian (21)", "Score": 0, - "Duration": 484893.47 + "Duration": 584484.2 }, { "Name": "[P0D]Jack_Nicholson (41)", "Score": 0, - "Duration": 484893.47 + "Duration": 584484.2 }, { "Name": "[POD]Jet_Li (61)", - "Score": 1, - "Duration": 484893.47 + "Score": 2, + "Duration": 584484.2 } ] \ No newline at end of file diff --git a/OpenGSQTests/Results/WONTests/GetRulesTest.json b/OpenGSQTests/Results/WONTests/GetRulesTest.json index 54606ae..33562b1 100644 --- a/OpenGSQTests/Results/WONTests/GetRulesTest.json +++ b/OpenGSQTests/Results/WONTests/GetRulesTest.json @@ -1,8 +1,8 @@ { "allow_spectators": "0", "amx_client_languages": "0", - "amx_nextmap": "de_piranesi", - "amx_timeleft": "13:32", + "amx_nextmap": "as_oilrig", + "amx_timeleft": "12:57", "amxmodx_version": "1.8.1.3746", "coop": "0", "csdmsake_version": "1.1e", diff --git a/docs/tests/ASETests/GetStatusTest.md b/docs/tests/ASETests/GetStatusTest.md index b4a5c65..184cebf 100644 --- a/docs/tests/ASETests/GetStatusTest.md +++ b/docs/tests/ASETests/GetStatusTest.md @@ -10,217 +10,209 @@ Here are the results for the test method. { "GameName": "mta", "GamePort": 22003, - "HostName": "MTA Türkiye ✖ GÜL GAMİNG FREEROAM ✖ [Roleplay/Askeri/Drift/Drop/Turkey/Tr/Gül Gaming]", - "GameType": "23:00 Etkinlik (Discord)", + "Hostname": "MTA Türkiye ✖ GÜL GAMİNG FREEROAM ✖ [Roleplay/Askeri/Drift/Drop/Turkey/Tr/Gül Gaming]", + "GameType": "BEDAVA - VIP", "Map": "None", "Version": "1.6", "Password": false, - "NumPlayers": 98, + "NumPlayers": 95, "MaxPlayers": 120, "Rules": {}, "Players": [ { - "Name": "GiganticDaybed48", + "Name": "Yakuza", "Team": "", "Skin": "", "Score": 0, - "Ping": 75, + "Ping": 143, "Time": 0 }, { - "Name": "Uzmancavusmurat", + "Name": "SIVAS", "Team": "", "Skin": "", "Score": 0, - "Ping": 68, + "Ping": 82, "Time": 0 }, { - "Name": "SAMETNEXX", + "Name": "JaxTenz", "Team": "", "Skin": "", "Score": 0, - "Ping": 68, + "Ping": 75, "Time": 0 }, { - "Name": "Snowden", + "Name": "Lacoste^^", "Team": "", "Skin": "", "Score": 0, - "Ping": 73, + "Ping": 67, "Time": 0 }, { - "Name": "Melikee", + "Name": "efe911", "Team": "", "Skin": "", "Score": 0, - "Ping": 91, + "Ping": 75, "Time": 0 }, { - "Name": "SAGO|MANYAGI", + "Name": "Oxy$Gen", "Team": "", "Skin": "", "Score": 0, - "Ping": 119, + "Ping": 88, "Time": 0 }, { - "Name": "lvntrd", + "Name": "AP3X", "Team": "", "Skin": "", "Score": 0, - "Ping": 74, + "Ping": 75, "Time": 0 }, { - "Name": "YAKXJ", + "Name": "HesitantTorchiere26", "Team": "", "Skin": "", "Score": 0, - "Ping": 69, + "Ping": 81, "Time": 0 }, { - "Name": "AmuckKitten2", + "Name": "Cann", "Team": "", "Skin": "", "Score": 0, - "Ping": 67, + "Ping": 362, "Time": 0 }, { - "Name": "Bati", + "Name": "Melikee", "Team": "", "Skin": "", "Score": 0, - "Ping": 67, + "Ping": 93, "Time": 0 }, { - "Name": "REDBUL", + "Name": "JINXED:=", "Team": "", "Skin": "", "Score": 0, - "Ping": 72, + "Ping": 71, "Time": 0 }, { - "Name": "TROZY", + "Name": "sude", "Team": "", "Skin": "", "Score": 0, - "Ping": 81, + "Ping": 50, "Time": 0 }, { - "Name": "Pyrozen", + "Name": "FerhatRose", "Team": "", "Skin": "", "Score": 0, - "Ping": 79, + "Ping": 151, "Time": 0 }, { - "Name": "TNs-HAMOUDI*-*", + "Name": "ardaunlms", "Team": "", "Skin": "", "Score": 0, - "Ping": 1393, + "Ping": 88, "Time": 0 }, { - "Name": "Merve_", + "Name": "Asphaly", "Team": "", "Skin": "", "Score": 0, - "Ping": 73, + "Ping": 59, "Time": 0 }, { - "Name": "berk", + "Name": "NK-CoherentTaxi33", "Team": "", "Skin": "", "Score": 0, - "Ping": 63, + "Ping": 353, "Time": 0 }, { - "Name": "Han", + "Name": "BrownGuineapig60", "Team": "", "Skin": "", "Score": 0, - "Ping": 92, + "Ping": 59, "Time": 0 }, { - "Name": "TonyyMontanaa", + "Name": "umutbaba", "Team": "", "Skin": "", "Score": 0, - "Ping": 70, + "Ping": 54, "Time": 0 }, { - "Name": "SuperZone", + "Name": "Nightmustafa", "Team": "", "Skin": "", "Score": 0, - "Ping": 68, + "Ping": 140, "Time": 0 }, { - "Name": "HEATUFAN", + "Name": "Gloxinia", "Team": "", "Skin": "", "Score": 0, - "Ping": 72, - "Time": 0 - }, - { - "Name": "WomanlyFlute33", - "Team": "", - "Skin": "", - "Score": 0, - "Ping": 67, + "Ping": 75, "Time": 0 }, { - "Name": "RynKent", + "Name": "FORDCU61", "Team": "", "Skin": "", "Score": 0, - "Ping": 137, + "Ping": 75, "Time": 0 }, { - "Name": "CalmCap85", + "Name": "TozBey", "Team": "", "Skin": "", "Score": 0, - "Ping": 101, + "Ping": 71, "Time": 0 }, { - "Name": "#WAREX^&HOL!GAN", + "Name": "Agrippa", "Team": "", "Skin": "", "Score": 0, - "Ping": 57, + "Ping": 102, "Time": 0 }, { - "Name": "Zhnya", + "Name": "Morfin", "Team": "", "Skin": "", "Score": 0, - "Ping": 199, + "Ping": 70, "Time": 0 }, { - "Name": "TRMami", + "Name": "laz61", "Team": "", "Skin": "", "Score": 0, @@ -228,383 +220,383 @@ Here are the results for the test method. "Time": 0 }, { - "Name": "#[R]aiweN.'", + "Name": "MR_Brave", "Team": "", "Skin": "", "Score": 0, - "Ping": 78, + "Ping": 75, "Time": 0 }, { - "Name": "berat", + "Name": "AZER~>BILE~>BASARAMADI", "Team": "", "Skin": "", "Score": 0, - "Ping": 91, + "Ping": 116, "Time": 0 }, { - "Name": "gulcanss", + "Name": "TightHood54", "Team": "", "Skin": "", "Score": 0, - "Ping": 178, + "Ping": 51, "Time": 0 }, { - "Name": "Pika", + "Name": "Baliq", "Team": "", "Skin": "", "Score": 0, - "Ping": 86, + "Ping": 77, "Time": 0 }, { - "Name": "baranny", + "Name": "efecankx", "Team": "", "Skin": "", "Score": 0, - "Ping": 86, + "Ping": 52, "Time": 0 }, { - "Name": "omer911", + "Name": "mamutali", "Team": "", "Skin": "", "Score": 0, - "Ping": 138, + "Ping": 94, "Time": 0 }, { - "Name": "zhdsenturk", + "Name": "#Crown", "Team": "", "Skin": "", "Score": 0, - "Ping": 71, + "Ping": 88, "Time": 0 }, { - "Name": "AmusingAnkle96", + "Name": "Marlboro", "Team": "", "Skin": "", "Score": 0, - "Ping": 86, + "Ping": 190, "Time": 0 }, { - "Name": "YSF-LOSEPH", + "Name": "MustafaX", "Team": "", "Skin": "", "Score": 0, - "Ping": 85, + "Ping": 83, "Time": 0 }, { - "Name": "#Radu", + "Name": "EGEMEN", "Team": "", "Skin": "", "Score": 0, - "Ping": 80, + "Ping": 102, "Time": 0 }, { - "Name": "YigitVeysel", + "Name": "nc", "Team": "", "Skin": "", "Score": 0, - "Ping": 78, + "Ping": 61, "Time": 0 }, { - "Name": "AbundantThigh59", + "Name": "Emir", "Team": "", "Skin": "", "Score": 0, - "Ping": 73, + "Ping": 74, "Time": 0 }, { - "Name": "HulkingCasserole62", + "Name": "PARAPALAZULA", "Team": "", "Skin": "", "Score": 0, - "Ping": 72, + "Ping": 69, "Time": 0 }, { - "Name": "Babacan06", + "Name": "AwakeSamovar2", "Team": "", "Skin": "", "Score": 0, - "Ping": 72, + "Ping": 74, "Time": 0 }, { - "Name": "ardababapiro12", + "Name": "LoutishVirginal30", "Team": "", "Skin": "", "Score": 0, - "Ping": 67, + "Ping": 78, "Time": 0 }, { - "Name": "SARSILMAZ", + "Name": "TAKSIMLI_BUSE", "Team": "", "Skin": "", "Score": 0, - "Ping": 67, + "Ping": 83, "Time": 0 }, { - "Name": "CowardlyButterfly77", + "Name": "^H4luk'!", "Team": "", "Skin": "", "Score": 0, - "Ping": 72, + "Ping": 83, "Time": 0 }, { - "Name": "ObsoleteShrimp5", + "Name": "AdhocClipper88", "Team": "", "Skin": "", "Score": 0, - "Ping": 87, + "Ping": 326, "Time": 0 }, { - "Name": "AdaptableSquash18", + "Name": "cio", "Team": "", "Skin": "", "Score": 0, - "Ping": 86, + "Ping": 52, "Time": 0 }, { - "Name": "FurkanTR", + "Name": "SAMETNEXX", "Team": "", "Skin": "", "Score": 0, - "Ping": 67, + "Ping": 56, "Time": 0 }, { - "Name": "mordacai", + "Name": "REDBUL", "Team": "", "Skin": "", "Score": 0, - "Ping": 85, + "Ping": 78, "Time": 0 }, { - "Name": "efe911", + "Name": "kaantheking", "Team": "", "Skin": "", "Score": 0, - "Ping": 68, + "Ping": 59, "Time": 0 }, { - "Name": "cio", + "Name": "Chezzaritz", "Team": "", "Skin": "", "Score": 0, - "Ping": 74, + "Ping": 55, "Time": 0 }, { - "Name": "Grimz", + "Name": "TXC-CASPER", "Team": "", "Skin": "", "Score": 0, - "Ping": 67, + "Ping": 69, "Time": 0 }, { - "Name": "LEXUS35", + "Name": "HakanCaner", "Team": "", "Skin": "", "Score": 0, - "Ping": 102, + "Ping": 68, "Time": 0 }, { - "Name": "ThirstyWrestler40", + "Name": "Bomboclat_", "Team": "", "Skin": "", "Score": 0, - "Ping": 61, + "Ping": 88, "Time": 0 }, { - "Name": "TenderArmoire20", + "Name": "Letted", "Team": "", "Skin": "", "Score": 0, - "Ping": 83, + "Ping": 75, "Time": 0 }, { - "Name": "Ahmet", + "Name": "illegal39", "Team": "", "Skin": "", "Score": 0, - "Ping": 90, + "Ping": 60, "Time": 0 }, { - "Name": "PaltryTrain88", + "Name": "STANZY", "Team": "", "Skin": "", "Score": 0, - "Ping": 62, + "Ping": 219, "Time": 0 }, { - "Name": "ObeisantToad61", + "Name": "Metrix", "Team": "", "Skin": "", "Score": 0, - "Ping": 144, + "Ping": 74, "Time": 0 }, { - "Name": "ahmet123", + "Name": "MeanTummy53", "Team": "", "Skin": "", "Score": 0, - "Ping": 78, + "Ping": 72, "Time": 0 }, { - "Name": "SOLAKISCHAVO", + "Name": "144hzPekk", "Team": "", "Skin": "", "Score": 0, - "Ping": 62, + "Ping": 85, "Time": 0 }, { - "Name": "ParaBabasi", + "Name": "RainyWaffles18", "Team": "", "Skin": "", "Score": 0, - "Ping": 53, + "Ping": 48, "Time": 0 }, { - "Name": "RamazanBaygara", + "Name": "GODZILLA", "Team": "", "Skin": "", "Score": 0, - "Ping": 61, + "Ping": 89, "Time": 0 }, { - "Name": "LongingConductor67", + "Name": "yagizbabbba", "Team": "", "Skin": "", "Score": 0, - "Ping": 54, + "Ping": 96, "Time": 0 }, { - "Name": "RemarkableDragonfly22", + "Name": "ByLua", "Team": "", "Skin": "", "Score": 0, - "Ping": 105, + "Ping": 58, "Time": 0 }, { - "Name": "eZroLexx", + "Name": "Lolita", "Team": "", "Skin": "", "Score": 0, - "Ping": 74, + "Ping": 70, "Time": 0 }, { - "Name": "amcarte", + "Name": "Zeld", "Team": "", "Skin": "", "Score": 0, - "Ping": 67, + "Ping": 70, "Time": 0 }, { - "Name": "AdjoiningDaughter94", + "Name": "#ByReaL", "Team": "", "Skin": "", "Score": 0, - "Ping": 78, + "Ping": 113, "Time": 0 }, { - "Name": "DEDUBLU", + "Name": "Yakisikli_Erkan", "Team": "", "Skin": "", "Score": 0, - "Ping": 67, + "Ping": 69, "Time": 0 }, { - "Name": "LoutishVirginal30", + "Name": "ECRINNN", "Team": "", "Skin": "", "Score": 0, - "Ping": 73, + "Ping": 412, "Time": 0 }, { - "Name": "RaneX", + "Name": "1940emo", "Team": "", "Skin": "", "Score": 0, - "Ping": 73, + "Ping": 69, "Time": 0 }, { - "Name": "HesitantTorchiere26", + "Name": "Simurh", "Team": "", "Skin": "", "Score": 0, - "Ping": 126, + "Ping": 105, "Time": 0 }, { - "Name": "Morfin", + "Name": "TUSUBASA.", "Team": "", "Skin": "", "Score": 0, - "Ping": 95, + "Ping": 163, "Time": 0 }, { - "Name": "mami7498", + "Name": "WateryBanjo65", "Team": "", "Skin": "", "Score": 0, - "Ping": 72, + "Ping": 67, "Time": 0 }, { - "Name": "HellasWerona", + "Name": "mu", "Team": "", "Skin": "", "Score": 0, - "Ping": 62, + "Ping": 60, "Time": 0 }, { - "Name": "ConsciousRail24", + "Name": "Grimz", "Team": "", "Skin": "", "Score": 0, - "Ping": 79, + "Ping": 457, "Time": 0 }, { - "Name": "CJ", + "Name": "Slarch", "Team": "", "Skin": "", "Score": 0, @@ -612,39 +604,23 @@ Here are the results for the test method. "Time": 0 }, { - "Name": "WholeBum50", - "Team": "", - "Skin": "", - "Score": 0, - "Ping": 561, - "Time": 0 - }, - { - "Name": "HaltingBloom4", - "Team": "", - "Skin": "", - "Score": 0, - "Ping": 66, - "Time": 0 - }, - { - "Name": "BerserkCriminal13", + "Name": "Merve_", "Team": "", "Skin": "", "Score": 0, - "Ping": 86, + "Ping": 83, "Time": 0 }, { - "Name": "DeterminedNougats72", + "Name": "DiligentRetina14", "Team": "", "Skin": "", "Score": 0, - "Ping": 79, + "Ping": 65, "Time": 0 }, { - "Name": "FivePie74", + "Name": "CeaselessEris82", "Team": "", "Skin": "", "Score": 0, @@ -652,155 +628,155 @@ Here are the results for the test method. "Time": 0 }, { - "Name": "samet", + "Name": "giresunhamsisiemopasa", "Team": "", "Skin": "", "Score": 0, - "Ping": 95, + "Ping": 102, "Time": 0 }, { - "Name": "miro", + "Name": "Pyrozen", "Team": "", "Skin": "", "Score": 0, - "Ping": 79, + "Ping": 104, "Time": 0 }, { - "Name": "UnableAlligator13", + "Name": "FURKAN", "Team": "", "Skin": "", "Score": 0, - "Ping": 61, + "Ping": 91, "Time": 0 }, { - "Name": "Oxy$Gen", + "Name": "~Ls~ZoLeY", "Team": "", "Skin": "", "Score": 0, - "Ping": 91, + "Ping": 70, "Time": 0 }, { - "Name": "MONSTER", + "Name": "canbequit", "Team": "", "Skin": "", "Score": 0, - "Ping": 75, + "Ping": 63, "Time": 0 }, { - "Name": "hard", + "Name": "Onekey", "Team": "", "Skin": "", "Score": 0, - "Ping": 71, + "Ping": 80, "Time": 0 }, { - "Name": "DefectiveVenus80", + "Name": "TNs-HAMOUDI*-*", "Team": "", "Skin": "", "Score": 0, - "Ping": 72, + "Ping": 149, "Time": 0 }, { - "Name": "BACISIKENANIL", + "Name": "FretfulSaltlake73", "Team": "", "Skin": "", "Score": 0, - "Ping": 101, + "Ping": 70, "Time": 0 }, { - "Name": "(LC)arda", + "Name": "yunus", "Team": "", "Skin": "", "Score": 0, - "Ping": 61, + "Ping": 317, "Time": 0 }, { - "Name": "WonderfulMother21", + "Name": "yusuf", "Team": "", "Skin": "", "Score": 0, - "Ping": 53, + "Ping": 78, "Time": 0 }, { - "Name": "EliteAbdomen29", + "Name": "emirx", "Team": "", "Skin": "", "Score": 0, - "Ping": 75, + "Ping": 93, "Time": 0 }, { - "Name": "Zico", + "Name": "SH1WA.&'HOLIGAN", "Team": "", "Skin": "", "Score": 0, - "Ping": 67, + "Ping": 59, "Time": 0 }, { - "Name": "REFLEX", + "Name": "GoodMule52", "Team": "", "Skin": "", "Score": 0, - "Ping": 86, + "Ping": 83, "Time": 0 }, { - "Name": "gangsta", + "Name": "mayback~", "Team": "", "Skin": "", "Score": 0, - "Ping": 86, + "Ping": 68, "Time": 0 }, { - "Name": "60D", + "Name": "MUSTAFA01TAS", "Team": "", "Skin": "", "Score": 0, - "Ping": 88, + "Ping": 151, "Time": 0 }, { - "Name": "#Chivas35", + "Name": "amed21", "Team": "", "Skin": "", "Score": 0, - "Ping": 657, + "Ping": 80, "Time": 0 }, { - "Name": "RuddyThumb92", + "Name": "Kuz3yw", "Team": "", "Skin": "", "Score": 0, - "Ping": 97, + "Ping": 57, "Time": 0 }, { - "Name": "xL99-Pablo", + "Name": "ceren", "Team": "", "Skin": "", "Score": 0, - "Ping": 92, + "Ping": 98, "Time": 0 }, { - "Name": "xL99#Devil", + "Name": "EreN", "Team": "", "Skin": "", "Score": 0, - "Ping": 131, + "Ping": 200, "Time": 0 } ] diff --git a/docs/tests/BattlefieldTests/GetInfoTest.md b/docs/tests/BattlefieldTests/GetInfoTest.md index fb2324b..425c07f 100644 --- a/docs/tests/BattlefieldTests/GetInfoTest.md +++ b/docs/tests/BattlefieldTests/GetInfoTest.md @@ -9,23 +9,23 @@ Here are the results for the test method. ```json { "Hostname": "[JAH] Warriors #01 - Metro Only - All Weapons - 64 Slots", - "NumPlayers": 39, + "NumPlayers": 48, "MaxPlayers": 64, "GameType": "ConquestLarge0", "Map": "MP_Subway", "RoundsPlayed": 1, "RoundsTotal": 2, "Teams": [ - 1632.8749, - 1388.285 + 1807.8092, + 1949 ], "TargetScore": 0, "Status": "", "Ranked": true, "PunkBuster": true, "Password": false, - "Uptime": 43641, - "RoundTime": 1651, + "Uptime": 55052, + "RoundTime": 464, "IpPort": "94.250.199.214:25200", "PunkBusterVersion": "v1.905 | A1386 C2.352", "JoinQueue": true, diff --git a/docs/tests/BattlefieldTests/GetPlayersTest.md b/docs/tests/BattlefieldTests/GetPlayersTest.md index 9b93f88..d81077a 100644 --- a/docs/tests/BattlefieldTests/GetPlayersTest.md +++ b/docs/tests/BattlefieldTests/GetPlayersTest.md @@ -9,433 +9,532 @@ Here are the results for the test method. ```json [ { - "name": "Bisatiz", + "name": "emaxxrossi", + "guid": "", + "teamId": "2", + "squadId": "7", + "kills": "0", + "deaths": "0", + "score": "0", + "rank": "145", + "ping": "41" + }, + { + "name": "mike12led-GR", "guid": "", "teamId": "1", - "squadId": "3", - "kills": "16", - "deaths": "17", - "score": "8702", - "rank": "58", - "ping": "29" + "squadId": "7", + "kills": "0", + "deaths": "2", + "score": "1600", + "rank": "61", + "ping": "46" }, { - "name": "zKuntur", + "name": "Illuminaty", "guid": "", "teamId": "2", "squadId": "10", - "kills": "50", - "deaths": "15", - "score": "7804", + "kills": "0", + "deaths": "0", + "score": "0", "rank": "145", - "ping": "34" + "ping": "44" }, { - "name": "UbiBaWka", + "name": "Drenwal56", "guid": "", "teamId": "1", + "squadId": "7", + "kills": "1", + "deaths": "4", + "score": "1494", + "rank": "145", + "ping": "22" + }, + { + "name": "D3rSt3ff", + "guid": "", + "teamId": "2", "squadId": "2", - "kills": "10", - "deaths": "10", - "score": "2197", - "rank": "125", - "ping": "43" + "kills": "15", + "deaths": "3", + "score": "5572", + "rank": "145", + "ping": "19" }, { - "name": "x_ToGo_x", + "name": "XxKarmakiller8xX", "guid": "", - "teamId": "1", - "squadId": "4", - "kills": "8", - "deaths": "7", - "score": "4724", + "teamId": "2", + "squadId": "3", + "kills": "17", + "deaths": "4", + "score": "6812", "rank": "145", - "ping": "52" + "ping": "20" }, { - "name": "I-HEB3OPOB-I", + "name": "NIKO76_fr_", "guid": "", "teamId": "1", - "squadId": "4", - "kills": "31", - "deaths": "10", - "score": "15802", + "squadId": "2", + "kills": "3", + "deaths": "5", + "score": "3184", "rank": "145", - "ping": "65535" + "ping": "22" }, { - "name": "Pawel197704", + "name": "Blbendum", "guid": "", "teamId": "2", - "squadId": "10", - "kills": "10", - "deaths": "24", - "score": "7576", - "rank": "28", - "ping": "28" + "squadId": "4", + "kills": "14", + "deaths": "5", + "score": "1718", + "rank": "145", + "ping": "129" }, { - "name": "Gaz_Ranger_28x", + "name": "tuman81", "guid": "", - "teamId": "2", - "squadId": "1", - "kills": "7", - "deaths": "14", - "score": "5772", - "rank": "112", - "ping": "23" + "teamId": "1", + "squadId": "16", + "kills": "2", + "deaths": "1", + "score": "904", + "rank": "145", + "ping": "65535" }, { - "name": "Roma_sibir_55", + "name": "Winipu", "guid": "", "teamId": "1", "squadId": "1", - "kills": "17", - "deaths": "16", - "score": "7330", + "kills": "7", + "deaths": "9", + "score": "3066", "rank": "145", - "ping": "72" + "ping": "14" }, { - "name": "XCelimanX", + "name": "ajn1n", "guid": "", "teamId": "2", - "squadId": "10", - "kills": "5", + "squadId": "5", + "kills": "3", + "deaths": "1", + "score": "980", + "rank": "145", + "ping": "33" + }, + { + "name": "Zenova_1133", + "guid": "", + "teamId": "1", + "squadId": "16", + "kills": "9", "deaths": "5", - "score": "5304", + "score": "4560", "rank": "145", - "ping": "18" + "ping": "25" }, { - "name": "cerberus2500", + "name": "KnockOG", + "guid": "", + "teamId": "1", + "squadId": "6", + "kills": "2", + "deaths": "1", + "score": "2430", + "rank": "14", + "ping": "36" + }, + { + "name": "GTOLE", + "guid": "", + "teamId": "1", + "squadId": "3", + "kills": "1", + "deaths": "2", + "score": "816", + "rank": "145", + "ping": "14" + }, + { + "name": "Sumidanchik", "guid": "", "teamId": "2", "squadId": "3", - "kills": "4", - "deaths": "6", - "score": "3668", - "rank": "95", - "ping": "21" + "kills": "6", + "deaths": "3", + "score": "2598", + "rank": "77", + "ping": "35" }, { - "name": "4uintus", + "name": "CayleyHamilton", "guid": "", "teamId": "2", - "squadId": "4", - "kills": "52", - "deaths": "36", - "score": "10807", + "squadId": "10", + "kills": "2", + "deaths": "1", + "score": "1560", "rank": "145", - "ping": "22" + "ping": "32" }, { - "name": "orel116IL", + "name": "ne0rs", + "guid": "", + "teamId": "1", + "squadId": "10", + "kills": "4", + "deaths": "5", + "score": "960", + "rank": "145", + "ping": "25" + }, + { + "name": "john-ganisa", "guid": "", "teamId": "2", "squadId": "4", - "kills": "10", - "deaths": "16", - "score": "10522", - "rank": "38", - "ping": "57" + "kills": "6", + "deaths": "2", + "score": "1943", + "rank": "48", + "ping": "37" }, { - "name": "uNreal_Niru", + "name": "Wallace1st", "guid": "", - "teamId": "1", + "teamId": "2", "squadId": "4", "kills": "5", - "deaths": "12", - "score": "3670", - "rank": "51", - "ping": "42" + "deaths": "3", + "score": "3238", + "rank": "145", + "ping": "19" }, { - "name": "El_DIVINO91", + "name": "Jesaplegros", "guid": "", - "teamId": "1", - "squadId": "3", - "kills": "33", - "deaths": "25", - "score": "9066", - "rank": "50", - "ping": "112" + "teamId": "2", + "squadId": "0", + "kills": "4", + "deaths": "0", + "score": "1474", + "rank": "145", + "ping": "11" }, { - "name": "Vasya666Vasya", + "name": "Fitaro", "guid": "", - "teamId": "1", - "squadId": "3", - "kills": "7", - "deaths": "11", - "score": "6308", + "teamId": "2", + "squadId": "10", + "kills": "22", + "deaths": "0", + "score": "3100", "rank": "145", - "ping": "62" + "ping": "117" }, { - "name": "MrEgYpTx", + "name": "JoJacksonGER", "guid": "", - "teamId": "1", + "teamId": "2", "squadId": "1", - "kills": "43", - "deaths": "11", - "score": "16084", - "rank": "72", - "ping": "80" + "kills": "2", + "deaths": "4", + "score": "1138", + "rank": "145", + "ping": "22" }, { - "name": "laylay73", + "name": "MECdonaldxx", "guid": "", "teamId": "2", - "squadId": "4", - "kills": "17", - "deaths": "21", - "score": "10212", - "rank": "145", - "ping": "107" + "squadId": "2", + "kills": "4", + "deaths": "6", + "score": "2688", + "rank": "46", + "ping": "196" }, { - "name": "tecnoden", + "name": "Pascal19601961", "guid": "", - "teamId": "1", - "squadId": "1", - "kills": "17", - "deaths": "20", - "score": "11802", + "teamId": "2", + "squadId": "9", + "kills": "2", + "deaths": "0", + "score": "3394", "rank": "145", - "ping": "58" + "ping": "34" }, { - "name": "DJOstice", + "name": "Chaossx52", "guid": "", "teamId": "1", - "squadId": "5", - "kills": "27", - "deaths": "13", - "score": "7410", - "rank": "145", - "ping": "25" + "squadId": "6", + "kills": "0", + "deaths": "4", + "score": "220", + "rank": "105", + "ping": "62" }, { - "name": "Troldemort", + "name": "IKillYouAll42", "guid": "", - "teamId": "2", - "squadId": "3", - "kills": "8", - "deaths": "16", - "score": "3954", - "rank": "96", - "ping": "17" + "teamId": "1", + "squadId": "5", + "kills": "12", + "deaths": "8", + "score": "5664", + "rank": "134", + "ping": "15" }, { - "name": "Googlefaul", + "name": "jeanporte11", "guid": "", "teamId": "1", "squadId": "5", - "kills": "72", - "deaths": "13", - "score": "11361", - "rank": "73", - "ping": "104" + "kills": "4", + "deaths": "6", + "score": "3136", + "rank": "13", + "ping": "162" }, { - "name": "Loloppopsossi786", + "name": "da3333", "guid": "", "teamId": "1", - "squadId": "1", - "kills": "5", - "deaths": "5", - "score": "2872", - "rank": "68", - "ping": "22" + "squadId": "7", + "kills": "1", + "deaths": "7", + "score": "1274", + "rank": "51", + "ping": "25" }, { - "name": "InFiniTy_ZarKaM", + "name": "Mikey_Maaitjie", "guid": "", "teamId": "2", - "squadId": "2", - "kills": "21", - "deaths": "15", - "score": "8916", - "rank": "42", - "ping": "41" + "squadId": "7", + "kills": "2", + "deaths": "3", + "score": "509", + "rank": "64", + "ping": "177" }, { - "name": "duisendpot", + "name": "7amada2211", "guid": "", "teamId": "2", - "squadId": "2", - "kills": "4", - "deaths": "10", - "score": "1992", - "rank": "89", - "ping": "38" + "squadId": "10", + "kills": "0", + "deaths": "1", + "score": "0", + "rank": "145", + "ping": "10" }, { - "name": "tamirmichael", + "name": "BurraESP", + "guid": "", + "teamId": "1", + "squadId": "5", + "kills": "1", + "deaths": "3", + "score": "524", + "rank": "46", + "ping": "31" + }, + { + "name": "HannoWar", "guid": "", "teamId": "2", "squadId": "2", "kills": "1", - "deaths": "5", - "score": "1914", - "rank": "69", - "ping": "24" + "deaths": "2", + "score": "2752", + "rank": "145", + "ping": "25" }, { - "name": "sleepwalker7474", + "name": "Crawfy2D", "guid": "", "teamId": "2", - "squadId": "10", - "kills": "14", - "deaths": "11", - "score": "7634", + "squadId": "2", + "kills": "9", + "deaths": "4", + "score": "3660", "rank": "145", - "ping": "33" + "ping": "15" }, { - "name": "cf9b1fc3a0c91d4d", + "name": "kazak150rus", + "guid": "", + "teamId": "2", + "squadId": "3", + "kills": "4", + "deaths": "0", + "score": "1752", + "rank": "145", + "ping": "34" + }, + { + "name": "Hoffi62", "guid": "", "teamId": "1", "squadId": "5", "kills": "2", - "deaths": "5", - "score": "2232", - "rank": "77", - "ping": "38" + "deaths": "1", + "score": "1156", + "rank": "94", + "ping": "8" }, { - "name": "-0_KzG_0-", + "name": "Kudlacz07", + "guid": "", + "teamId": "2", + "squadId": "4", + "kills": "15", + "deaths": "4", + "score": "7344", + "rank": "93", + "ping": "30" + }, + { + "name": "MyFaultReally", "guid": "", "teamId": "2", "squadId": "3", "kills": "3", - "deaths": "2", - "score": "660", - "rank": "51", - "ping": "16" + "deaths": "3", + "score": "1168", + "rank": "11", + "ping": "75" }, { - "name": "0317Mo_Yan", + "name": "Daw94111", "guid": "", - "teamId": "2", + "teamId": "1", "squadId": "2", - "kills": "3", - "deaths": "4", - "score": "1290", - "rank": "1", - "ping": "38" + "kills": "4", + "deaths": "2", + "score": "1180", + "rank": "110", + "ping": "19" }, { - "name": "BlackDistrict_PL", + "name": "Kasztanica00", "guid": "", "teamId": "1", - "squadId": "4", - "kills": "8", + "squadId": "1", + "kills": "1", "deaths": "5", - "score": "2402", - "rank": "128", - "ping": "44" + "score": "462", + "rank": "12", + "ping": "32" }, { - "name": "MrMacPhisto2501", + "name": "kerel29", "guid": "", - "teamId": "2", - "squadId": "4", - "kills": "13", - "deaths": "9", - "score": "4614", + "teamId": "1", + "squadId": "7", + "kills": "3", + "deaths": "4", + "score": "1386", "rank": "145", - "ping": "47" + "ping": "14" }, { - "name": "JoJacksonGER", + "name": "hawk_it24", "guid": "", - "teamId": "2", - "squadId": "3", - "kills": "6", - "deaths": "3", - "score": "1560", - "rank": "145", - "ping": "20" + "teamId": "1", + "squadId": "16", + "kills": "1", + "deaths": "1", + "score": "1566", + "rank": "27", + "ping": "27" }, { - "name": "Fryer42", + "name": "NaseHD", "guid": "", "teamId": "2", - "squadId": "1", + "squadId": "13", "kills": "0", "deaths": "0", "score": "0", - "rank": "108", - "ping": "21" + "rank": "145", + "ping": "8" }, { - "name": "GianCarco", + "name": "awodh-2012", "guid": "", "teamId": "1", - "squadId": "2", - "kills": "0", - "deaths": "4", - "score": "140", - "rank": "113", - "ping": "32" + "squadId": "16", + "kills": "17", + "deaths": "0", + "score": "5682", + "rank": "77", + "ping": "105" }, { - "name": "Azerbaidschan", + "name": "LyrArc", "guid": "", "teamId": "2", "squadId": "1", - "kills": "3", + "kills": "2", "deaths": "0", - "score": "848", - "rank": "145", - "ping": "13" + "score": "2186", + "rank": "74", + "ping": "12" }, { - "name": "Flyguy21jager", + "name": "BruceV14", "guid": "", "teamId": "1", - "squadId": "2", - "kills": "0", - "deaths": "1", - "score": "280", - "rank": "145", - "ping": "65535" + "squadId": "10", + "kills": "5", + "deaths": "2", + "score": "2970", + "rank": "132", + "ping": "31" }, { - "name": "jcpresas", + "name": "SalehElsayed", "guid": "", - "teamId": "2", - "squadId": "1", - "kills": "0", - "deaths": "0", - "score": "1040", - "rank": "145", - "ping": "40" + "teamId": "1", + "squadId": "10", + "kills": "5", + "deaths": "1", + "score": "2938", + "rank": "35", + "ping": "63" }, { - "name": "9032b57a6b49f900", + "name": "SEF-CONDOR", "guid": "", "teamId": "1", "squadId": "2", - "kills": "1", - "deaths": "1", - "score": "200", + "kills": "4", + "deaths": "4", + "score": "1144", "rank": "145", - "ping": "29" + "ping": "26" }, { - "name": "manara033", + "name": "EricIN", "guid": "", - "teamId": "0", - "squadId": "0", + "teamId": "1", + "squadId": "1", "kills": "0", - "deaths": "0", - "score": "0", - "rank": "145", - "ping": "65535" + "deaths": "2", + "score": "640", + "rank": "67", + "ping": "105" } ] ``` diff --git a/docs/tests/Doom3Tests/GetInfoTest.md b/docs/tests/Doom3Tests/GetInfoTest.md index d4c3c8a..f470a81 100644 --- a/docs/tests/Doom3Tests/GetInfoTest.md +++ b/docs/tests/Doom3Tests/GetInfoTest.md @@ -41,14 +41,13 @@ Here are the results for the test method. "si_antiLag": "1", "bot_enable": "1", "gamename": "baseETQW-1", - "si_campaign": "campaign_northeurope", - "si_map": "maps/quarry.entities", - "si_campaignInfo": "", + "si_campaign": "campaign_pacific", + "si_map": "maps/canyon.entities", "players": [ { "id": 0, "ping": 0, - "name": "NOSFERATU", + "name": "WAT|infected_remnants", "clantag_pos": 0, "clantag": "", "typeflag": 1 @@ -56,74 +55,90 @@ Here are the results for the test method. { "id": 1, "ping": 0, - "name": "flower.tube", + "name": "iceT-bag", "clantag_pos": 0, "clantag": "", "typeflag": 1 }, { - "id": 2, + "id": 3, "ping": 0, - "name": "rumpleforeskin", + "name": "Boss_Tweed", "clantag_pos": 0, "clantag": "", "typeflag": 1 }, { - "id": 3, + "id": 4, "ping": 0, - "name": "NoobMcBoob", + "name": "CTZN Kane", "clantag_pos": 0, "clantag": "", "typeflag": 1 }, { - "id": 4, - "ping": 100, - "name": "Player____", + "id": 5, + "ping": 0, + "name": "FannyPack", "clantag_pos": 0, "clantag": "", - "typeflag": 0 + "typeflag": 1 }, { - "id": 10, + "id": 6, "ping": 0, - "name": "HaltHammerzeit", + "name": "Kettle", "clantag_pos": 0, "clantag": "", "typeflag": 1 }, { - "id": 11, + "id": 7, "ping": 0, - "name": "NiceLagSwitch", + "name": "HaltHammerzeit", "clantag_pos": 0, "clantag": "", "typeflag": 1 }, { - "id": 12, + "id": 8, "ping": 0, - "name": "STFUandDIE", + "name": "NOSFERATU", "clantag_pos": 0, "clantag": "", "typeflag": 1 }, { - "id": 13, + "id": 9, "ping": 0, - "name": "FannyPack", + "name": "Gumbii", "clantag_pos": 0, "clantag": "", "typeflag": 1 }, { - "id": 14, + "id": 10, + "ping": 61, + "name": "Konkwista", + "clantag_pos": 0, + "clantag": "", + "typeflag": 0 + }, + { + "id": 11, "ping": 0, - "name": "Bad Hombre", + "name": "Vlad_Putimir", "clantag_pos": 0, "clantag": "", "typeflag": 1 + }, + { + "id": 12, + "ping": 36, + "name": "WARRIOR______", + "clantag_pos": 0, + "clantag": "", + "typeflag": 0 } ] } diff --git a/docs/tests/EOSTests/GetInfoTest.md b/docs/tests/EOSTests/GetInfoTest.md index a07ad72..6577a8e 100644 --- a/docs/tests/EOSTests/GetInfoTest.md +++ b/docs/tests/EOSTests/GetInfoTest.md @@ -24,8 +24,8 @@ Here are the results for the test method. "rejoinAfterKick": "", "platforms": null }, - "totalPlayers": 49, - "openPublicPlayers": 21, + "totalPlayers": 39, + "openPublicPlayers": 31, "publicPlayers": [], "started": false, "lastUpdated": null, @@ -38,11 +38,11 @@ Here are the results for the test method. "SERVERPASSWORD_b": false, "MATCHTIMEOUT_d": 120.0, "ENABLEDMODSFILEIDS_s": "4979340", - "DAYTIME_s": "312", + "DAYTIME_s": "327", "SOTFMATCHSTARTED_b": false, "STEELSHIELDENABLED_l": 1, "SERVERUSESBATTLEYE_b": true, - "EOSSERVERPING_l": 313, + "EOSSERVERPING_l": 252, "ALLOWDOWNLOADCHARS_l": 1, "OFFICIALSERVER_s": "1", "GAMEMODE_s": "TestGameMode_C", diff --git a/docs/tests/FiveMTests/GetDynamicTest.md b/docs/tests/FiveMTests/GetDynamicTest.md index 72fcd9f..2d45cbf 100644 --- a/docs/tests/FiveMTests/GetDynamicTest.md +++ b/docs/tests/FiveMTests/GetDynamicTest.md @@ -8,10 +8,10 @@ Here are the results for the test method. ```json { - "clients": 0, + "clients": 4, "gametype": "Roleplay", "hostname": "^3Popcorn Roleplay \uD83C\uDF7F ^7| Player Driven Roleplay! Player-run Economy, Restaurants, Mechanic Shops with custom crafting, 70+ Custom Weapons, Custom Cars, custom businesses, and endless possibilities!", - "iv": "1203673699", + "iv": "204245275", "mapname": "Los_Santos", "sv_maxclients": "64" } diff --git a/docs/tests/FiveMTests/GetInfoTest.md b/docs/tests/FiveMTests/GetInfoTest.md index 18a9fbb..afa2cac 100644 --- a/docs/tests/FiveMTests/GetInfoTest.md +++ b/docs/tests/FiveMTests/GetInfoTest.md @@ -134,7 +134,6 @@ Here are the results for the test method. "FranklinHousefix", "freedom_tower", "Gatto_WorkShopLA", - "glowpalms", "qb-prison", "xtxvxtx_prop_disabler", "laundry", @@ -368,6 +367,6 @@ Here are the results for the test method. "tags": "Roleplay, Casual, Economy, LSPD, EMS, Gangs, Cars, Motorcycles, Secrets, qbx_core, gunplay, Customs, Crime, territories, semi-serious, original, qbxcore", "txAdmin-version": "6.0.2" }, - "version": 1203673699 + "version": 204245275 } ``` diff --git a/docs/tests/FiveMTests/GetPlayersTest.md b/docs/tests/FiveMTests/GetPlayersTest.md index dec0ecb..fff44f3 100644 --- a/docs/tests/FiveMTests/GetPlayersTest.md +++ b/docs/tests/FiveMTests/GetPlayersTest.md @@ -7,5 +7,60 @@ uid: OpenGSQ.Protocols.Tests.FiveMTests.GetPlayersTest Here are the results for the test method. ```json -[] +[ + { + "endpoint": "127.0.0.1", + "id": 2, + "identifiers": [ + "license:f2791635dc281679e2c111054792bf8c5502afc6", + "xbl:2535472678279323", + "live:985154577587668", + "discord:964914608206921879", + "fivem:10447649", + "license2:f2791635dc281679e2c111054792bf8c5502afc6" + ], + "name": "joe", + "ping": 84 + }, + { + "endpoint": "127.0.0.1", + "id": 5, + "identifiers": [ + "license:bbada5b121e84819b01cd58d0ec7c108c10a3355", + "discord:754206775074357280", + "fivem:7299594", + "license2:28d05a915e18844d446a7c9feb54ddbfd8147069" + ], + "name": "Malva", + "ping": 93 + }, + { + "endpoint": "127.0.0.1", + "id": 6, + "identifiers": [ + "license:feef646718d2283c786d9d1377decd3b4ee45e63", + "xbl:2535405211024165", + "live:844428391057578", + "discord:759117825481900084", + "fivem:8999311", + "license2:a7ce2d61a2c4f61fb19cd7d845cede4c708b8580" + ], + "name": "Mswubz", + "ping": 39 + }, + { + "endpoint": "127.0.0.1", + "id": 7, + "identifiers": [ + "license:546a58dd390002fe6fdda16d63c1dbfef0942431", + "xbl:2535450452952571", + "live:985154013491421", + "discord:694662759593410601", + "fivem:2598523", + "license2:2a29c36aeb15fcb1cd471252df5367fc3cc0c783" + ], + "name": "YOU", + "ping": 40 + } +] ``` diff --git a/docs/tests/GameSpy1Tests/GetInfoTest.md b/docs/tests/GameSpy1Tests/GetInfoTest.md index c89ed21..9804718 100644 --- a/docs/tests/GameSpy1Tests/GetInfoTest.md +++ b/docs/tests/GameSpy1Tests/GetInfoTest.md @@ -10,10 +10,10 @@ Here are the results for the test method. { "hostname": " --- ComboGib CTF (Grapple) -- London --- EatSleepUT.com", "hostport": "7777", - "maptitle": "|-Vp-| FragWhoreArena", - "mapname": "CTF-(Vp)FragWhore[ZPC]", + "maptitle": "FRAG WHORE FAST ATTACK BY BULBAFLEX", + "mapname": "CTF-((-FragWhore-FastAttack-V2))", "gametype": "CTFGame", - "numplayers": "12", + "numplayers": "18", "maxplayers": "18", "gamemode": "openplaying", "gamever": "469", diff --git a/docs/tests/GameSpy1Tests/GetPlayersTest.md b/docs/tests/GameSpy1Tests/GetPlayersTest.md index c276b8f..b871097 100644 --- a/docs/tests/GameSpy1Tests/GetPlayersTest.md +++ b/docs/tests/GameSpy1Tests/GetPlayersTest.md @@ -9,29 +9,49 @@ Here are the results for the test method. ```json [ { - "player": "H3Lc@T", - "frags": "35", - "ping": " 135", + "player": "John_Cutter", + "frags": "0", + "ping": " 33", + "team": "0", + "mesh": "Male Soldier", + "skin": "SoldierSkins.hkil", + "face": "SoldierSkins.vector", + "ngsecret": "true" + }, + { + "player": "B888M", + "frags": "4", + "ping": " 80", "team": "0", + "mesh": "Male Soldier", + "skin": "SoldierSkins.sldr", + "face": "SoldierSkins.Brock", + "ngsecret": "true" + }, + { + "player": "mino", + "frags": "38", + "ping": " 61", + "team": "1", "mesh": "Female Soldier", - "skin": "SGirlSkins.fbth", - "face": "SGirlSkins.Annaka", + "skin": "SGirlSkins.Garf", + "face": "SGirlSkins.Isis", "ngsecret": "true" }, { - "player": "Pacman", - "frags": "75", - "ping": " 35", + "player": "SonOfSam", + "frags": "68", + "ping": " 46", "team": "1", "mesh": "Male Soldier", - "skin": "SoldierSkins.Blkt", - "face": "SoldierSkins.Malcom", + "skin": "SoldierSkins.hkil", + "face": "SoldierSkins.matrix", "ngsecret": "true" }, { - "player": "UTNL", - "frags": "402", - "ping": " 164", + "player": "pape.ruthless", + "frags": "52", + "ping": " 43", "team": "0", "mesh": "Male Commando", "skin": "CommandoSkins.daco", @@ -39,39 +59,49 @@ Here are the results for the test method. "ngsecret": "true" }, { - "player": "BV", - "frags": "200", - "ping": " 82", + "player": "gzm", + "frags": "67", + "ping": " 34", "team": "1", - "mesh": "Male Soldier", - "skin": "SoldierSkins.hkil", - "face": "SoldierSkins.vector", + "mesh": "Female Soldier", + "skin": "SGirlSkins.Army", + "face": "SGirlSkins.Shyann", "ngsecret": "true" }, { - "player": "MAD", - "frags": "202", - "ping": " 43", + "player": "Fe", + "frags": "152", + "ping": " 31", "team": "0", - "mesh": "", - "skin": "SoldierSkins.Blkt", - "face": "SoldierSkins.", + "mesh": "Female Soldier", + "skin": "SGirlSkins.Garf", + "face": "SGirlSkins.Isis", "ngsecret": "true" }, { - "player": "wish_me_luck", - "frags": "0", - "ping": " 38", - "team": "255", - "mesh": "Spectator", - "skin": "None", - "face": "", + "player": "The.R", + "frags": "83", + "ping": " 57", + "team": "1", + "mesh": "Male Soldier", + "skin": "SoldierSkins.hkil", + "face": "SoldierSkins.matrix", + "ngsecret": "true" + }, + { + "player": "___", + "frags": "107", + "ping": " 33", + "team": "0", + "mesh": "Male Commando", + "skin": "CommandoSkins.cmdo", + "face": "CommandoSkins.Blake", "ngsecret": "true" }, { "player": "wpxc", - "frags": "187", - "ping": " 52", + "frags": "8", + "ping": " 56", "team": "0", "mesh": "Male Soldier", "skin": "SoldierSkins.Gard", @@ -79,9 +109,9 @@ Here are the results for the test method. "ngsecret": "true" }, { - "player": "ego", + "player": "wish_me_luck", "frags": "0", - "ping": " 110", + "ping": " 51", "team": "255", "mesh": "Spectator", "skin": "None", @@ -89,53 +119,73 @@ Here are the results for the test method. "ngsecret": "true" }, { - "player": ":Dugly", - "frags": "372", - "ping": " 42", + "player": "Snakefinger", + "frags": "39", + "ping": " 242", "team": "1", - "mesh": "Female Commando", - "skin": "FCommandoSkins.daco", - "face": "FCommandoSkins.Tanya", + "mesh": "Male Commando", + "skin": "CommandoSkins.daco", + "face": "CommandoSkins.Graves", "ngsecret": "true" }, { - "player": "shmoo", - "frags": "258", - "ping": " 46", + "player": "Doc_Gaylord", + "frags": "54", + "ping": " 284", "team": "1", - "mesh": "Female Soldier", - "skin": "SGirlSkins.fwar", - "face": "SGirlSkins.Cathode", + "mesh": "Male Commando", + "skin": "CommandoSkins.goth", + "face": "CommandoSkins.Grail", "ngsecret": "true" }, { - "player": "Peter", - "frags": "654", - "ping": " 15", + "player": "period", + "frags": "108", + "ping": " 39", "team": "0", + "mesh": "Female Soldier", + "skin": "SGirlSkins.Garf", + "face": "SGirlSkins.Vixen", + "ngsecret": "true" + }, + { + "player": "effibrie", + "frags": "64", + "ping": " 57", + "team": "1", "mesh": "Male Soldier", - "skin": "SoldierSkins.Blkt", - "face": "SoldierSkins.Malcom", + "skin": "SoldierSkins.sldr", + "face": "SoldierSkins.Harlin", "ngsecret": "true" }, { - "player": "nitro", - "frags": "302", - "ping": " 42", + "player": "dickfish.umx", + "frags": "125", + "ping": " 51", "team": "1", - "mesh": "Boss", - "skin": "BossSkins.boss", - "face": "BossSkins.T_1", + "mesh": "Male Soldier", + "skin": "SoldierSkins.hkil", + "face": "SoldierSkins.matrix", "ngsecret": "true" }, { - "player": "��ul~C�llect�r", - "frags": "494", - "ping": " 90", + "player": "Pomzie", + "frags": "57", + "ping": " 53", "team": "0", - "mesh": "", + "mesh": "Female Soldier", + "skin": "SGirlSkins.fbth", + "face": "SGirlSkins.Annaka", + "ngsecret": "true" + }, + { + "player": "creep", + "frags": "191", + "ping": " 51", + "team": "0", + "mesh": "Female Commando", "skin": "FCommandoSkins.goth", - "face": "FCommandoSkins.Freylis", + "face": "FCommandoSkins.Visse", "ngsecret": "true" } ] diff --git a/docs/tests/GameSpy1Tests/GetStatusTest.md b/docs/tests/GameSpy1Tests/GetStatusTest.md index 5159da3..e7ec382 100644 --- a/docs/tests/GameSpy1Tests/GetStatusTest.md +++ b/docs/tests/GameSpy1Tests/GetStatusTest.md @@ -16,10 +16,10 @@ Here are the results for the test method. "location": "0", "hostname": " --- ComboGib CTF (Grapple) -- London --- EatSleepUT.com", "hostport": "7777", - "maptitle": "|-Vp-| FragWhoreArena", - "mapname": "CTF-(Vp)FragWhore[ZPC]", + "maptitle": "FRAG WHORE FAST ATTACK BY BULBAFLEX", + "mapname": "CTF-((-FragWhore-FastAttack-V2))", "gametype": "CTFGame", - "numplayers": "15", + "numplayers": "18", "maxplayers": "18", "gamemode": "openplaying", "worldlog": "false", @@ -43,29 +43,59 @@ Here are the results for the test method. }, "Players": [ { - "player": "H3Lc@T", - "frags": "35", - "ping": " 136", + "player": "Freyja", + "frags": "0", + "ping": " 184", + "team": "1", + "mesh": "Female Commando", + "skin": "FCommandoSkins.aphe", + "face": "FCommandoSkins.Indina", + "ngsecret": "true" + }, + { + "player": "John_Cutter", + "frags": "0", + "ping": " 90", "team": "0", + "mesh": "Male Soldier", + "skin": "SoldierSkins.hkil", + "face": "SoldierSkins.vector", + "ngsecret": "true" + }, + { + "player": "B888M", + "frags": "2", + "ping": " 85", + "team": "0", + "mesh": "Male Soldier", + "skin": "SoldierSkins.sldr", + "face": "SoldierSkins.Brock", + "ngsecret": "true" + }, + { + "player": "mino", + "frags": "37", + "ping": " 56", + "team": "1", "mesh": "Female Soldier", - "skin": "SGirlSkins.fbth", - "face": "SGirlSkins.Annaka", + "skin": "SGirlSkins.Garf", + "face": "SGirlSkins.Isis", "ngsecret": "true" }, { - "player": "Pacman", - "frags": "75", - "ping": " 37", + "player": "SonOfSam", + "frags": "66", + "ping": " 109", "team": "1", "mesh": "Male Soldier", - "skin": "SoldierSkins.Blkt", - "face": "SoldierSkins.Malcom", + "skin": "SoldierSkins.hkil", + "face": "SoldierSkins.matrix", "ngsecret": "true" }, { - "player": "UTNL", - "frags": "402", - "ping": " 163", + "player": "pape.ruthless", + "frags": "47", + "ping": " 229", "team": "0", "mesh": "Male Commando", "skin": "CommandoSkins.daco", @@ -73,49 +103,49 @@ Here are the results for the test method. "ngsecret": "true" }, { - "player": "BV", - "frags": "200", - "ping": " 94", + "player": "gzm", + "frags": "66", + "ping": " 34", "team": "1", - "mesh": "Male Soldier", - "skin": "SoldierSkins.hkil", - "face": "SoldierSkins.vector", + "mesh": "Female Soldier", + "skin": "SGirlSkins.Army", + "face": "SGirlSkins.Shyann", "ngsecret": "true" }, { - "player": "crTz^", - "frags": "296", - "ping": " 48", - "team": "1", - "mesh": "", - "skin": "SoldierSkins.Gard", - "face": "SoldierSkins.Wraith", + "player": "Fe", + "frags": "145", + "ping": " 34", + "team": "0", + "mesh": "Female Soldier", + "skin": "SGirlSkins.Garf", + "face": "SGirlSkins.Isis", "ngsecret": "true" }, { - "player": "MAD", - "frags": "202", - "ping": " 49", - "team": "0", - "mesh": "", - "skin": "SoldierSkins.Blkt", - "face": "SoldierSkins.", + "player": "The.R", + "frags": "71", + "ping": " 185", + "team": "1", + "mesh": "Male Soldier", + "skin": "SoldierSkins.hkil", + "face": "SoldierSkins.matrix", "ngsecret": "true" }, { - "player": "wish_me_luck", - "frags": "0", - "ping": " 38", - "team": "255", - "mesh": "Spectator", - "skin": "None", - "face": "", + "player": "___", + "frags": "94", + "ping": " 35", + "team": "0", + "mesh": "Male Commando", + "skin": "CommandoSkins.cmdo", + "face": "CommandoSkins.Blake", "ngsecret": "true" }, { "player": "wpxc", - "frags": "187", - "ping": " 51", + "frags": "8", + "ping": " 58", "team": "0", "mesh": "Male Soldier", "skin": "SoldierSkins.Gard", @@ -123,73 +153,73 @@ Here are the results for the test method. "ngsecret": "true" }, { - "player": "ego", - "frags": "0", - "ping": " 99", - "team": "255", - "mesh": "Spectator", - "skin": "None", - "face": "", - "ngsecret": "true" - }, - { - "player": ":Dugly", - "frags": "372", - "ping": " 45", + "player": "Snakefinger", + "frags": "35", + "ping": " 253", "team": "1", - "mesh": "Female Commando", - "skin": "FCommandoSkins.daco", - "face": "FCommandoSkins.Tanya", + "mesh": "Male Commando", + "skin": "CommandoSkins.daco", + "face": "CommandoSkins.Graves", "ngsecret": "true" }, { - "player": "DAz", - "frags": "295", - "ping": " 238", + "player": "Doc_Gaylord", + "frags": "44", + "ping": " 161", "team": "1", "mesh": "Male Commando", - "skin": "CommandoSkins.cmdo", - "face": "CommandoSkins.Blake", + "skin": "CommandoSkins.goth", + "face": "CommandoSkins.Grail", "ngsecret": "true" }, { - "player": "shmoo", - "frags": "258", - "ping": " 45", - "team": "1", + "player": "period", + "frags": "98", + "ping": " 123", + "team": "0", "mesh": "Female Soldier", - "skin": "SGirlSkins.fwar", - "face": "SGirlSkins.Cathode", + "skin": "SGirlSkins.Garf", + "face": "SGirlSkins.Vixen", "ngsecret": "true" }, { - "player": "Peter", - "frags": "654", - "ping": " 19", - "team": "0", + "player": "effibrie", + "frags": "63", + "ping": " 56", + "team": "1", "mesh": "Male Soldier", - "skin": "SoldierSkins.Blkt", - "face": "SoldierSkins.Malcom", + "skin": "SoldierSkins.sldr", + "face": "SoldierSkins.Harlin", "ngsecret": "true" }, { - "player": "nitro", - "frags": "302", - "ping": " 47", + "player": "dickfish.umx", + "frags": "103", + "ping": " 52", "team": "1", - "mesh": "Boss", - "skin": "BossSkins.boss", - "face": "BossSkins.T_1", + "mesh": "Male Soldier", + "skin": "SoldierSkins.hkil", + "face": "SoldierSkins.matrix", + "ngsecret": "true" + }, + { + "player": "Pomzie", + "frags": "57", + "ping": " 55", + "team": "0", + "mesh": "Female Soldier", + "skin": "SGirlSkins.fbth", + "face": "SGirlSkins.Annaka", "ngsecret": "true" }, { - "player": "��ul~C�llect�r", - "frags": "494", - "ping": " 93", + "player": "creep", + "frags": "185", + "ping": " 51", "team": "0", - "mesh": "", + "mesh": "Female Commando", "skin": "FCommandoSkins.goth", - "face": "FCommandoSkins.Freylis", + "face": "FCommandoSkins.Visse", "ngsecret": "true" } ] diff --git a/docs/tests/GameSpy1Tests/GetTeamsTest.md b/docs/tests/GameSpy1Tests/GetTeamsTest.md index cf8d9e4..0edd857 100644 --- a/docs/tests/GameSpy1Tests/GetTeamsTest.md +++ b/docs/tests/GameSpy1Tests/GetTeamsTest.md @@ -10,13 +10,13 @@ Here are the results for the test method. [ { "team": "Red", - "score": "6.000000", - "size": "6" + "score": "2.000000", + "size": "9" }, { "team": "Blue", "score": "2.000000", - "size": "5" + "size": "8" }, { "team": "Green", diff --git a/docs/tests/GameSpy2Tests/GetStatusTest.md b/docs/tests/GameSpy2Tests/GetStatusTest.md index d1ea747..3546790 100644 --- a/docs/tests/GameSpy2Tests/GetStatusTest.md +++ b/docs/tests/GameSpy2Tests/GetStatusTest.md @@ -11,11 +11,11 @@ Here are the results for the test method. "Info": { "hostname": "*Easy Prey/Death*", "hostport": "15567", - "mapname": "Flaming Dart [Extra Vehicles] -SSM-", + "mapname": "Irving [Extra Vehicles] -SSM-", "gametype": "coop", - "numplayers": "8", + "numplayers": "4", "maxplayers": "50", - "gamemode": "openplaying", + "gamemode": "pre", "password": "0", "gamever": "v1.21", "dedicated": "2", @@ -56,78 +56,46 @@ Here are the results for the test method. }, "Players": [ { - "player": "Hoang Huynh", - "score": "10", - "deaths": "3", - "ping": "238", - "team": "2", - "kills": "11" - }, - { - "player": "VKHD Player", - "score": "15", - "deaths": "2", - "ping": "108", - "team": "2", - "kills": "12" - }, - { - "player": "Tyme Bulm", - "score": "9", + "player": "Ka", + "score": "0", "deaths": "0", - "ping": "19", + "ping": "175", "team": "1", - "kills": "4" + "kills": "0" }, { - "player": "jon", - "score": "19", - "deaths": "4", - "ping": "67", + "player": "WR", + "score": "0", + "deaths": "0", + "ping": "139", "team": "1", - "kills": "11" + "kills": "0" }, { - "player": "gooodie boi", - "score": "2", - "deaths": "4", - "ping": "121", + "player": "pinky", + "score": "0", + "deaths": "0", + "ping": "32", "team": "2", - "kills": "3" - }, - { - "player": "str1ker", - "score": "3", - "deaths": "5", - "ping": "183", - "team": "1", - "kills": "5" - }, - { - "player": "Santa", - "score": "3", - "deaths": "5", - "ping": "110", - "team": "1", - "kills": "3" + "kills": "0" }, { "player": "Hannibal", - "score": "9", - "deaths": "2", - "ping": "149", - "team": "2", - "kills": "6" + "score": "0", + "deaths": "0", + "ping": "112", + "team": "1", + "kills": "0" } ], "Teams": [ { "team": "red", - "tickets": "770" + "tickets": "846" }, { "team": "blue", - "tickets": "536" + "tickets": "846" } ] } diff --git a/docs/tests/GameSpy3Tests/GetStatusTest.md b/docs/tests/GameSpy3Tests/GetStatusTest.md index cf22bde..fd4eb66 100644 --- a/docs/tests/GameSpy3Tests/GetStatusTest.md +++ b/docs/tests/GameSpy3Tests/GetStatusTest.md @@ -12,10 +12,10 @@ Here are the results for the test method. "hostname": "2F4Y.com - Best Maps No Rules!", "gamename": "battlefield2", "gamever": "1.5.3153-802.0", - "mapname": "FuShe Pass", + "mapname": "Sharqi Peninsula", "gametype": "gpm_cq", "gamevariant": "bf2", - "numplayers": "62", + "numplayers": "60", "maxplayers": "64", "gamemode": "openplaying", "password": "0", @@ -41,7 +41,7 @@ Here are the results for the test method. "bf2_scorelimit": "0", "bf2_ticketratio": "100", "bf2_teamratio": "100.000000", - "bf2_team1": "CH", + "bf2_team1": "MEC", "bf2_team2": "US", "bf2_bots": "0", "bf2_pure": "1", @@ -57,599 +57,519 @@ Here are the results for the test method. }, "Players": [ { - "player": "GooD_KnifE_SpeeD", - "score": "6", + "player": "UA Shunya|Kh", + "score": "7", "ping": "38", "team": "2", - "deaths": "0", - "pid": "46687128", + "deaths": "1", + "pid": "190086892", "skill": "3", "AIBot": "0" }, { - "player": "Nenadst", - "score": "2", - "ping": "36", + "player": "Ever Alinka", + "score": "7", + "ping": "73", "team": "1", "deaths": "0", - "pid": "500286203", - "skill": "1", + "pid": "500367653", + "skill": "0", "AIBot": "0" }, { - "player": "Enis505", - "score": "2", - "ping": "39", - "team": "1", + "player": "Geo TsKyyy", + "score": "6", + "ping": "69", + "team": "2", "deaths": "0", - "pid": "500327194", - "skill": "1", + "pid": "500120160", + "skill": "3", "AIBot": "0" }, { - "player": "vvv899", - "score": "2", - "ping": "45", - "team": "1", + "player": "Kapacb1", + "score": "6", + "ping": "42", + "team": "2", "deaths": "0", - "pid": "104288609", - "skill": "1", + "pid": "66401801", + "skill": "3", "AIBot": "0" }, { - "player": "olegas olegass", - "score": "2", - "ping": "45", + "player": "201! Hot_player", + "score": "5", + "ping": "90", "team": "1", - "deaths": "0", - "pid": "124960311", - "skill": "0", + "deaths": "1", + "pid": "500320400", + "skill": "1", "AIBot": "0" }, { - "player": "ibrahem22a2002", - "score": "0", - "ping": "96", + "player": "Capra_hircus", + "score": "4", + "ping": "33", "team": "2", "deaths": "0", - "pid": "500588874", - "skill": "0", + "pid": "500484370", + "skill": "2", "AIBot": "0" }, { - "player": "***rey_santos***", - "score": "0", - "ping": "265", - "team": "1", - "deaths": "0", - "pid": "500019708", - "skill": "0", + "player": "DzNts CroZZFir3", + "score": "4", + "ping": "9", + "team": "2", + "deaths": "1", + "pid": "229552298", + "skill": "2", "AIBot": "0" }, { - "player": "andreyder9271", - "score": "0", - "ping": "39", + "player": "Portweingenossen", + "score": "4", + "ping": "43", "team": "1", "deaths": "0", - "pid": "500501238", - "skill": "0", + "pid": "500117676", + "skill": "1", "AIBot": "0" }, { - "player": "pichula_gorda", - "score": "0", - "ping": "254", + "player": "[=] Bleik", + "score": "4", + "ping": "34", "team": "1", - "deaths": "0", - "pid": "500538628", - "skill": "0", + "deaths": "1", + "pid": "500476212", + "skill": "1", "AIBot": "0" }, { - "player": "mami_gold", - "score": "0", - "ping": "55", - "team": "1", - "deaths": "0", - "pid": "500395073", - "skill": "0", + "player": "durbun", + "score": "4", + "ping": "104", + "team": "2", + "deaths": "1", + "pid": "48458390", + "skill": "1", "AIBot": "0" }, { - "player": "yazopel07", - "score": "0", - "ping": "81", + "player": "M3diC ||:.Sh@d0W.:||", + "score": "3", + "ping": "109", "team": "2", "deaths": "0", - "pid": "500582768", + "pid": "500589769", "skill": "0", "AIBot": "0" }, { - "player": "Artichot76", - "score": "0", - "ping": "34", + "player": "Seq_gOOdbYee^", + "score": "2", + "ping": "70", "team": "1", "deaths": "0", - "pid": "46772127", - "skill": "0", + "pid": "272300495", + "skill": "1", "AIBot": "0" }, { - "player": "[FUB] The-Killer-", - "score": "0", - "ping": "13", + "player": "demon1610", + "score": "2", + "ping": "44", "team": "2", "deaths": "0", - "pid": "500586673", - "skill": "0", + "pid": "110854694", + "skill": "1", "AIBot": "0" }, { - "player": "Sweet233", - "score": "0", - "ping": "342", + "player": "Cyou", + "score": "2", + "ping": "40", "team": "2", "deaths": "0", - "pid": "500567772", - "skill": "0", - "AIBot": "0" - }, - { - "player": "HeartOf20Men", - "score": "0", - "ping": "123", - "team": "1", - "deaths": "0", - "pid": "500117892", - "skill": "0", + "pid": "45747160", + "skill": "1", "AIBot": "0" }, { - "player": "krankenhelsinki", - "score": "0", - "ping": "42", - "team": "1", + "player": "Tess* SkyDistress", + "score": "2", + "ping": "45", + "team": "2", "deaths": "0", - "pid": "500381111", + "pid": "500115230", "skill": "0", "AIBot": "0" }, { - "player": "kome80", - "score": "0", - "ping": "21", + "player": "MedibuSuns", + "score": "2", + "ping": "53", "team": "1", - "deaths": "0", - "pid": "500453605", + "deaths": "1", + "pid": "351680652", "skill": "0", "AIBot": "0" }, { - "player": "SkYwhY *}sKy-wHor3{#*", - "score": "0", - "ping": "112", + "player": "Mert*Y BF2Played", + "score": "1", + "ping": "91", "team": "1", "deaths": "0", - "pid": "500585276", - "skill": "0", + "pid": "500590925", + "skill": "1", "AIBot": "0" }, { - "player": "DanecoYTb1726", + "player": "kevin_d", "score": "0", - "ping": "160", + "ping": "159", "team": "2", - "deaths": "0", - "pid": "500580266", - "skill": "0", + "deaths": "1", + "pid": "500515608", + "skill": "1", "AIBot": "0" }, { - "player": "Abadman", + "player": "Get_Sniped", "score": "0", - "ping": "29", + "ping": "30", "team": "2", "deaths": "0", - "pid": "500524043", + "pid": "47365348", "skill": "0", "AIBot": "0" }, { - "player": "ATA78", + "player": "THE_END_OF_THE_TIME", "score": "0", - "ping": "49", + "ping": "41", "team": "1", "deaths": "0", - "pid": "500134753", + "pid": "310964818", "skill": "0", "AIBot": "0" }, { - "player": "Rucki66", + "player": "-=BESH=-", "score": "0", - "ping": "20", + "ping": "46", "team": "1", "deaths": "0", - "pid": "71247371", + "pid": "500275688", "skill": "0", "AIBot": "0" }, { - "player": "Istrebitel77", + "player": "dexter.morgan2141s", "score": "0", - "ping": "17", + "ping": "53", "team": "1", "deaths": "0", - "pid": "419288055", + "pid": "500577259", "skill": "0", "AIBot": "0" }, { - "player": "THEREALloneWolfHUN", + "player": "Pwnplesniper", "score": "0", - "ping": "35", + "ping": "206", "team": "2", "deaths": "0", - "pid": "500590937", + "pid": "500562827", "skill": "0", "AIBot": "0" }, { - "player": "Photon", + "player": "SnakeCro30", "score": "0", - "ping": "49", + "ping": "34", "team": "2", "deaths": "0", - "pid": "500199415", + "pid": "477511643", "skill": "0", "AIBot": "0" }, { - "player": "oppo65ita", + "player": "DanecoYTb1726", "score": "0", - "ping": "43", + "ping": "161", "team": "2", "deaths": "0", - "pid": "500118493", - "skill": "0", - "AIBot": "0" - }, - { - "player": "begemoc", - "score": "0", - "ping": "36", - "team": "1", - "deaths": "0", - "pid": "500078534", + "pid": "500580266", "skill": "0", "AIBot": "0" }, { - "player": "Patrik99", + "player": "CENTINELA01", "score": "0", - "ping": "21", + "ping": "218", "team": "1", "deaths": "0", - "pid": "500589440", + "pid": "500270675", "skill": "0", "AIBot": "0" }, { - "player": "ChelovekPawuk", + "player": "Abadman", "score": "0", - "ping": "77", + "ping": "29", "team": "2", "deaths": "0", - "pid": "500568672", + "pid": "500524043", "skill": "0", "AIBot": "0" }, { - "player": "SWE antonzzzGubben", + "player": "@TTV sillyKaValley", "score": "0", - "ping": "28", + "ping": "16", "team": "2", "deaths": "0", - "pid": "239191021", + "pid": "500580239", "skill": "0", "AIBot": "0" }, { - "player": "=MNSK= =MNSK= darrel", + "player": "hiedar1999 hiedar1999", "score": "0", - "ping": "58", + "ping": "275", "team": "1", "deaths": "0", - "pid": "500557363", + "pid": "500118963", "skill": "0", "AIBot": "0" }, { - "player": "MedicsPleaseRevive:(", + "player": "Straybullit", "score": "0", - "ping": "18", + "ping": "126", "team": "2", "deaths": "0", - "pid": "500133886", - "skill": "0", - "AIBot": "0" - }, - { - "player": "VIKTORHK", - "score": "0", - "ping": "59", - "team": "1", - "deaths": "0", - "pid": "500112962", + "pid": "44989595", "skill": "0", "AIBot": "0" }, { - "player": "hulyganHUN", + "player": "PIPIRGA[RUS]", "score": "0", - "ping": "30", + "ping": "36", "team": "1", "deaths": "0", - "pid": "229523832", + "pid": "500015556", "skill": "0", "AIBot": "0" }, { - "player": "shommyx", + "player": "Foxtrot-Alfa", "score": "0", - "ping": "30", + "ping": "23", "team": "2", "deaths": "0", - "pid": "168136220", + "pid": "47347869", "skill": "0", "AIBot": "0" }, { - "player": "XTR MeXiCaNeT", + "player": "PrivateHenk", "score": "0", - "ping": "36", + "ping": "10", "team": "2", "deaths": "0", - "pid": "230850280", + "pid": "500117516", "skill": "0", "AIBot": "0" }, { - "player": "Tokapb_xxx", + "player": "GooD_KnifE_SpeeD", "score": "0", - "ping": "50", - "team": "2", + "ping": "38", + "team": "1", "deaths": "0", - "pid": "500381799", + "pid": "46687128", "skill": "0", "AIBot": "0" }, { - "player": "ARHARA", + "player": "=MNSK= darrel", "score": "0", - "ping": "62", - "team": "2", + "ping": "53", + "team": "1", "deaths": "0", - "pid": "193616524", + "pid": "500557363", "skill": "0", "AIBot": "0" }, { - "player": "=NsL= Sledge_H@mmer87", + "player": "AK-Canada", "score": "0", - "ping": "36", + "ping": "112", "team": "2", "deaths": "0", - "pid": "259194848", + "pid": "182559370", "skill": "0", "AIBot": "0" }, { - "player": "LORD BUG-ELIMINATOR-15", + "player": "royrambo358", "score": "0", - "ping": "29", + "ping": "67", "team": "2", "deaths": "0", - "pid": "85657274", + "pid": "194890691", "skill": "0", "AIBot": "0" }, { - "player": "Zbiry", + "player": "master_SSS", "score": "0", - "ping": "49", + "ping": "28", "team": "1", "deaths": "0", - "pid": "500375896", + "pid": "500548958", "skill": "0", "AIBot": "0" }, { - "player": "cleopatra-stratan", + "player": "Jactheknife", "score": "0", - "ping": "65", + "ping": "126", "team": "1", "deaths": "0", - "pid": "297946449", - "skill": "0", - "AIBot": "0" - }, - { - "player": "phiIIymungo", - "score": "0", - "ping": "46", - "team": "2", - "deaths": "0", - "pid": "500519244", - "skill": "0", - "AIBot": "0" - }, - { - "player": "demon1610", - "score": "0", - "ping": "43", - "team": "2", - "deaths": "0", - "pid": "110854110854694", + "pid": "500391063", "skill": "0", "AIBot": "0" }, { - "player": "MOCKBA7x7", + "player": "morech", "score": "0", - "ping": "40", + "ping": "87", "team": "1", "deaths": "0", - "pid": "500380235", - "skill": "0", - "AIBot": "0" - }, - { - "player": "abm60", - "score": "0", - "ping": "73", - "team": "2", - "deaths": "0", - "pid": "421588183", + "pid": "500585562", "skill": "0", "AIBot": "0" }, { - "player": "tronik", + "player": "$oL|TUDE", "score": "0", - "ping": "78", + "ping": "42", "team": "2", "deaths": "0", - "pid": "46694255", - "skill": "0", - "AIBot": "0" - }, - { - "player": ">>TAYSEER<<", - "score": "0", - "ping": "27", - "team": "1", - "deaths": "0", - "pid": "500583657", + "pid": "500540064", "skill": "0", "AIBot": "0" }, { "player": "AlexDeleter", "score": "0", - "ping": "11", - "team": "2", + "ping": "12", + "team": "1", "deaths": "0", "pid": "500147362", "skill": "0", "AIBot": "0" }, { - "player": "hime67", + "player": "Killer_Shooter", "score": "0", - "ping": "19", + "ping": "240", "team": "1", "deaths": "0", - "pid": "500589428", + "pid": "500141959", "skill": "0", "AIBot": "0" }, { - "player": "ICE.K92", + "player": "GER Oinkmen", "score": "0", - "ping": "27", + "ping": "26", "team": "2", "deaths": "0", - "pid": "500535970", + "pid": "43788609", "skill": "0", "AIBot": "0" }, { - "player": "-=BESH=-", + "player": "elcucuy", "score": "0", - "ping": "22", - "team": "2", - "deaths": "0", - "pid": "500275688", - "skill": "0", - "AIBot": "0" - }, - { - "player": "PlatonicSolid", - "score": "0", - "ping": "0", - "team": "2", - "deaths": "0", - "pid": "60507854", + "ping": "60", + "team": "1", + "deaths": "1", + "pid": "500589986", "skill": "0", "AIBot": "0" }, { - "player": "Pasifin96", + "player": "Fooxy69", "score": "0", - "ping": "56", - "team": "2", + "ping": "21", + "team": "1", "deaths": "1", - "pid": "500536616", + "pid": "500590992", "skill": "0", "AIBot": "0" }, { - "player": "bgrysl", + "player": "Zezoo123", "score": "0", - "ping": "57", + "ping": "85", "team": "1", "deaths": "1", - "pid": "500435868", + "pid": "500540652", "skill": "0", "AIBot": "0" }, { - "player": "Glek18", + "player": "Forumski", "score": "0", - "ping": "87", - "team": "2", + "ping": "195", + "team": "1", "deaths": "1", - "pid": "500219692", + "pid": "500438638", "skill": "0", "AIBot": "0" }, { - "player": "bg_solgier", + "player": "Ivimoto", "score": "0", - "ping": "42", + "ping": "26", "team": "1", - "deaths": "1", - "pid": "72371430", + "deaths": "2", + "pid": "73100284", "skill": "0", "AIBot": "0" }, { - "player": "HuntingPanther", + "player": "MrDeath1337", "score": "0", - "ping": "139", + "ping": "85", "team": "1", - "deaths": "1", - "pid": "500243443", + "deaths": "3", + "pid": "500590762", "skill": "0", "AIBot": "0" }, { - "player": "10Pennywise1282", + "player": "STREAM twitch.tv/bf2tv", "score": "-2", - "ping": "37", + "ping": "12", "team": "2", - "deaths": "0", - "pid": "112115718", + "deaths": "1", + "pid": "500470370", "skill": "0", "AIBot": "0" } ], "Teams": [ { - "eam": "CH", + "eam": "MEC", "score": "0" }, { diff --git a/docs/tests/GameSpy4Tests/GetStatusTest.md b/docs/tests/GameSpy4Tests/GetStatusTest.md index f1b7351..7c3545a 100644 --- a/docs/tests/GameSpy4Tests/GetStatusTest.md +++ b/docs/tests/GameSpy4Tests/GetStatusTest.md @@ -23,19 +23,19 @@ Here are the results for the test method. }, "Players": [ { - "player": "Spahikhi" + "player": "XxNE0BLAZExX777" }, { - "player": "BeansRgodly" + "player": "Spahikhi" }, { - "player": "IronFlam3s" + "player": "Ultimopro5" }, { - "player": "COOLPOPULAR7" + "player": "IronFlam3s" }, { - "player": "HunterDebAser" + "player": "ilovemeowing04" } ], "Teams": [] diff --git a/docs/tests/KillingFloorTests/GetDetailsTest.md b/docs/tests/KillingFloorTests/GetDetailsTest.md index 3f086ed..92777ae 100644 --- a/docs/tests/KillingFloorTests/GetDetailsTest.md +++ b/docs/tests/KillingFloorTests/GetDetailsTest.md @@ -8,16 +8,16 @@ Here are the results for the test method. ```json { - "WaveCurrent": 8, + "WaveCurrent": 1, "WaveTotal": 10, "ServerId": 0, "ServerIP": "", "GamePort": 7707, "QueryPort": 0, "ServerName": "WS-GAMING.EU | NORMAL | 60LVL [#1]", - "MapName": "KF-Porn-Shop-Beta6", + "MapName": "KF-Arcade-Shopping-WS", "GameType": "UZGameType", - "NumPlayers": 17, + "NumPlayers": 9, "MaxPlayers": 25, "Ping": 0, "Flags": 64, diff --git a/docs/tests/KillingFloorTests/GetPlayersTest.md b/docs/tests/KillingFloorTests/GetPlayersTest.md index 9306cfd..956f89a 100644 --- a/docs/tests/KillingFloorTests/GetPlayersTest.md +++ b/docs/tests/KillingFloorTests/GetPlayersTest.md @@ -9,109 +9,46 @@ Here are the results for the test method. ```json [ { - "Id": 4080, - "Name": "DLL", - "Ping": 52, - "Score": 2321, - "StatsId": 536870912 - }, - { - "Id": 3844, - "Name": "uuuuuttyy", - "Ping": 240, - "Score": 3713, - "StatsId": 536870912 - }, - { - "Id": 3647, - "Name": "SUBZERO", - "Ping": 80, - "Score": 2762, - "StatsId": 536870912 - }, - { - "Id": 2799, - "Name": "Odessit", - "Ping": 68, - "Score": 5535, - "StatsId": 536870912 - }, - { - "Id": 1983, - "Name": "wece67", - "Ping": 28, - "Score": 3339, - "StatsId": 536870912 - }, - { - "Id": 1811, - "Name": "NIC128", - "Ping": 68, - "Score": 3103, - "StatsId": 536870912 - }, - { - "Id": 860, - "Name": "XFACTOR", - "Ping": 144, - "Score": 2919, - "StatsId": 536870912 - }, - { - "Id": 753, - "Name": "Sheriffi", - "Ping": 48, - "Score": 3111, - "StatsId": 536870912 - }, - { - "Id": 275, - "Name": "Doodlez", - "Ping": 68, - "Score": -2147483648, - "StatsId": 536870912 - }, - { - "Id": 8, - "Name": "johnxina", - "Ping": 40, - "Score": 5762, + "Id": 6, + "Name": "Erniox", + "Ping": 20, + "Score": 500, "StatsId": 536870912 }, { - "Id": 7, - "Name": "Добряк", - "Ping": 60, - "Score": 3587, + "Id": 5, + "Name": "Ahoris_.i.", + "Ping": 104, + "Score": 500, "StatsId": 536870912 }, { - "Id": 6, - "Name": "Danek", + "Id": 4, + "Name": "Toshka", "Ping": 56, - "Score": 632, + "Score": 500, "StatsId": 536870912 }, { "Id": 3, - "Name": "[Dr.Pavco]", - "Ping": 56, - "Score": 2444, + "Name": "$Mantixas$", + "Ping": 20, + "Score": 500, "StatsId": 536870912 }, { "Id": 2, - "Name": "H1ƤהѲƬ1â„‚", - "Ping": 88, - "Score": 25275, + "Name": "BoNDe0", + "Ping": 16, + "Score": 500, "StatsId": 536870912 }, { "Id": 1, - "Name": "DS", - "Ping": 84, - "Score": 1102, - "StatsId": 0 + "Name": "Rick_Sanchez", + "Ping": 16, + "Score": 500, + "StatsId": 536870912 } ] ``` diff --git a/docs/tests/MinecraftTests/GetStatusPre17Test.md b/docs/tests/MinecraftTests/GetStatusPre17Test.md index ab5e0cf..bae70d3 100644 --- a/docs/tests/MinecraftTests/GetStatusPre17Test.md +++ b/docs/tests/MinecraftTests/GetStatusPre17Test.md @@ -11,7 +11,7 @@ Here are the results for the test method. "Protocol": "127", "Version": "Waterfall 1.8.x, 1.9.x, 1.10.x, 1.11.x, 1.12.x, 1.13.x, 1.14.x, 1.15.x, 1.16.x, 1.17.x, 1.18.x, 1.19.x, 1.20.x", "Motd": "§f§6 §6§m---§6|§d§k!\\!§6§lGOLDCRAFT.IR§d§k!\\!§6|§6§m---§1 §7v1.20.1", - "NumPlayers": 2, + "NumPlayers": 8, "MaxPlayers": 2023 } ``` diff --git a/docs/tests/MinecraftTests/GetStatusTest.md b/docs/tests/MinecraftTests/GetStatusTest.md index 3cffd3a..bcf6066 100644 --- a/docs/tests/MinecraftTests/GetStatusTest.md +++ b/docs/tests/MinecraftTests/GetStatusTest.md @@ -14,7 +14,7 @@ Here are the results for the test method. }, "players": { "max": 2023, - "online": 2, + "online": 8, "sample": [ { "name": "§aBe Player Haye Server", diff --git a/docs/tests/Quake1Tests/GetStatusTest.md b/docs/tests/Quake1Tests/GetStatusTest.md index 3c62e6e..aa49779 100644 --- a/docs/tests/Quake1Tests/GetStatusTest.md +++ b/docs/tests/Quake1Tests/GetStatusTest.md @@ -15,7 +15,7 @@ Here are the results for the test method. "hostname": "[BOTS] CustomTF For The People [BOTS]", "community": "https://discord.gg/fp9sSZ5", "admin/dev": "�Pulse����-", - "n": "22", + "n": "18", "rj": "2", "curse": "5", "deathmatch": "3", @@ -27,98 +27,68 @@ Here are the results for the test method. "samelevel": "0", "money": "11000", "watervis": "1", - "map": "spit" + "map": "bam4" }, "Players": [ { - "Id": 242, - "Score": -1, - "Time": 19, - "Ping": 807, - "Name": "Vincent", - "Skin": "tf_medic", - "Color1": 4, - "Color2": 4 - }, - { - "Id": 243, - "Score": -1, - "Time": 19, - "Ping": 807, - "Name": "Starscream", - "Skin": "tf_hwguy", - "Color1": 13, - "Color2": 13 - }, - { - "Id": 244, - "Score": -1, - "Time": 19, + "Id": 625, + "Score": 0, + "Time": 11, "Ping": 807, - "Name": "T-1000", - "Skin": "tf_hwguy", + "Name": "Governator", + "Skin": "tf_snipe", "Color1": 13, "Color2": 13 }, { - "Id": 245, - "Score": -1, - "Time": 19, + "Id": 626, + "Score": 0, + "Time": 11, "Ping": 807, - "Name": "Data", - "Skin": "tf_medic", + "Name": "Jerry", + "Skin": "tf_snipe", "Color1": 4, "Color2": 4 }, { - "Id": 246, - "Score": -1, - "Time": 19, + "Id": 627, + "Score": 0, + "Time": 11, "Ping": 807, - "Name": "Ash", - "Skin": "tf_medic", + "Name": "R2-D2", + "Skin": "tf_eng", "Color1": 13, "Color2": 13 }, { - "Id": 247, - "Score": -1, - "Time": 19, + "Id": 628, + "Score": 0, + "Time": 11, "Ping": 807, - "Name": "Gort", - "Skin": "tf_pyro", + "Name": "Kryten", + "Skin": "tf_sold", "Color1": 4, "Color2": 4 }, { - "Id": 248, - "Score": -1, - "Time": 19, + "Id": 623, + "Score": 0, + "Time": 11, "Ping": 807, - "Name": "Gypsy", - "Skin": "tf_hwguy", - "Color1": 13, - "Color2": 13 + "Name": "Starscream", + "Skin": "tf_demo", + "Color1": 4, + "Color2": 4 }, { - "Id": 250, + "Id": 624, "Score": 0, - "Time": 1, - "Ping": 363, - "Name": "user-250", - "Skin": "", - "Color1": 0, - "Color2": 0 - }, - { - "Id": 241, - "Score": -1, - "Time": 19, + "Time": 11, "Ping": 807, - "Name": "KITT", - "Skin": "tf_snipe", - "Color1": 4, - "Color2": 4 + "Name": "Data", + "Skin": "tf_medic", + "Color1": 13, + "Color2": 13 } ] } diff --git a/docs/tests/Quake2Tests/GetStatusTest.md b/docs/tests/Quake2Tests/GetStatusTest.md index 62bfd1b..80701df 100644 --- a/docs/tests/Quake2Tests/GetStatusTest.md +++ b/docs/tests/Quake2Tests/GetStatusTest.md @@ -22,16 +22,16 @@ Here are the results for the test method. "gamedir": "jump", "gamename": "Q2JUMP 1.35ger", "hostname": ".german q2 jump", - "mapname": "hellfire_46", + "mapname": "apocalypse42", "matchlock": "1", "matchtime": "20", "maxclients": "15", "port": "27910", "protocol": "34", - "time_remaining": "32:35", + "time_remaining": "00:59", "timelimit": "0", "version": "q2proded r1826~7ad132a Dec 28 2018 Linux x86_64", - "uptime": "16 days, 9 hours, 42 mins, 45 secs" + "uptime": "17 days, 13 hours, 22 mins, 40 secs" }, "Players": [] } diff --git a/docs/tests/Quake3Tests/GetInfoTest.md b/docs/tests/Quake3Tests/GetInfoTest.md index 95c1f79..4d1c135 100644 --- a/docs/tests/Quake3Tests/GetInfoTest.md +++ b/docs/tests/Quake3Tests/GetInfoTest.md @@ -12,7 +12,7 @@ Here are the results for the test method. "protocol": "84", "hostname": "New Server /connect jay1.clan-fa.com:27960", "serverload": "2", - "mapname": "et_mor2_night_final", + "mapname": "river_port", "clients": "25", "humans": "0", "sv_maxclients": "60", diff --git a/docs/tests/Quake3Tests/GetStatusTest.md b/docs/tests/Quake3Tests/GetStatusTest.md index 198a156..75630eb 100644 --- a/docs/tests/Quake3Tests/GetStatusTest.md +++ b/docs/tests/Quake3Tests/GetStatusTest.md @@ -19,7 +19,7 @@ Here are the results for the test method. "mod_version": "2.2.0", "mod_url": "http://jaymod.clanfu.org", "mod_binary": "linux-release", - "sv_uptime": "04d07h26m", + "sv_uptime": "05d11h07m", "sv_cpu": "Intel(R) Xeon(R) CPU E3-1270 v5", "g_axismaxlives": "0", "g_alliedmaxlives": "0", @@ -30,7 +30,7 @@ Here are the results for the test method. "sv_minPing": "0", "sv_minRate": "0", "sv_privateClients": "0", - "mapname": "et_mor2_night_final", + "mapname": "river_port", "protocol": "84", "g_gametype": "2", "sv_userInfoFloodProtect": "1", @@ -49,129 +49,129 @@ Here are the results for the test method. }, "Players": [ { - "Frags": 62362, + "Frags": 79980, "Ping": 0, "Name": "George" }, { - "Frags": 56798, + "Frags": 71487, "Ping": 0, "Name": "Beelz" }, { - "Frags": 64674, + "Frags": 82284, "Ping": 0, "Name": "Chimichanga" }, { - "Frags": 55439, + "Frags": 70231, "Ping": 0, "Name": "Kaolin" }, { - "Frags": 62737, + "Frags": 83683, "Ping": 0, "Name": "HalfH" }, { - "Frags": 53306, + "Frags": 67616, "Ping": 0, "Name": "Ed" }, { - "Frags": 63139, + "Frags": 78907, "Ping": 0, "Name": "Razor" }, { - "Frags": 54172, + "Frags": 67812, "Ping": 0, "Name": "Amadi" }, { - "Frags": 64624, + "Frags": 81942, "Ping": 0, "Name": "Brad" }, { - "Frags": 53712, + "Frags": 69204, "Ping": 0, "Name": "Bortack" }, { - "Frags": 60935, + "Frags": 79469, "Ping": 0, "Name": "Blackadder" }, { - "Frags": 53119, + "Frags": 67736, "Ping": 0, "Name": "Nandet" }, { - "Frags": 59671, + "Frags": 78164, "Ping": 0, "Name": "Sean" }, { - "Frags": 53373, + "Frags": 66966, "Ping": 0, "Name": "Morg" }, { - "Frags": 60570, + "Frags": 77396, "Ping": 0, "Name": "Nohope" }, { - "Frags": 52657, + "Frags": 66643, "Ping": 0, "Name": "Whitt" }, { - "Frags": 63711, + "Frags": 79029, "Ping": 0, "Name": "Newbie" }, { - "Frags": 52171, + "Frags": 65066, "Ping": 0, "Name": "Stinger" }, { - "Frags": 62241, + "Frags": 78848, "Ping": 0, "Name": "Cledus" }, { - "Frags": 51200, + "Frags": 65039, "Ping": 0, "Name": "Flint" }, { - "Frags": 62533, + "Frags": 79404, "Ping": 0, "Name": "Hitnrun" }, { - "Frags": 51367, + "Frags": 64251, "Ping": 0, "Name": "Wens" }, { - "Frags": 16475, + "Frags": 30852, "Ping": 0, "Name": "Halfwit" }, { - "Frags": 46684, + "Frags": 60449, "Ping": 0, "Name": "Argo" }, { - "Frags": 302, + "Frags": 1083, "Ping": 0, - "Name": "Tanz" + "Name": "Backfire" } ] } diff --git a/docs/tests/RakNetTests/GetStatusTest.md b/docs/tests/RakNetTests/GetStatusTest.md index 09242fc..f6aca03 100644 --- a/docs/tests/RakNetTests/GetStatusTest.md +++ b/docs/tests/RakNetTests/GetStatusTest.md @@ -12,9 +12,9 @@ Here are the results for the test method. "MotdLine1": "Advancius Network", "ProtocolVersion": 630, "VersionName": "1.20.50", - "NumPlayers": 213, + "NumPlayers": 181, "MaxPlayers": 400, - "ServerUniqueId": "5608118762258601527", + "ServerUniqueId": "12845842376166400652", "MotdLine2": "discord.advancius.net", "GameMode": "Survival", "GameModeNumeric": 1, diff --git a/docs/tests/SampTests/GetPlayersTest.md b/docs/tests/SampTests/GetPlayersTest.md index b52c912..0ce8190 100644 --- a/docs/tests/SampTests/GetPlayersTest.md +++ b/docs/tests/SampTests/GetPlayersTest.md @@ -10,561 +10,321 @@ Here are the results for the test method. [ { "Id": 0, - "Name": "Brian_Gambino", - "Score": 17, - "Ping": 82 + "Name": "Lisa_Anderline", + "Score": 23, + "Ping": 168 }, { "Id": 1, - "Name": "[NBA] DelRoy_Anderson", - "Score": 17, - "Ping": 77 + "Name": "Sidi_Boundagani", + "Score": 23, + "Ping": 65 }, { "Id": 2, - "Name": "Miguel_Escobar", - "Score": 28, - "Ping": 301 + "Name": "Pablo_Shelby", + "Score": 16, + "Ping": 189 }, { "Id": 3, - "Name": "[NBA] Jaren_Jackson", - "Score": 16, - "Ping": 78 + "Name": "Charlotte_Martinez", + "Score": 18, + "Ping": 66 }, { "Id": 4, - "Name": "Jacob_Harlon", - "Score": 20, - "Ping": 121 + "Name": "Michael_Hilton", + "Score": 27, + "Ping": 60 }, { "Id": 5, - "Name": "Chuck_Clayton", - "Score": 24, - "Ping": 57 + "Name": "Lukas_Eastwood", + "Score": 30, + "Ping": 132 }, { "Id": 6, - "Name": "[SAPD] Iftina_Hernandez", - "Score": 26, - "Ping": 233 + "Name": "Hector_Huerta", + "Score": 23, + "Ping": 200 }, { "Id": 7, - "Name": "Mike_Legend", - "Score": 23, - "Ping": 202 + "Name": "Jacqueline_Matisse", + "Score": 19, + "Ping": 65 }, { "Id": 8, - "Name": "Nazario_Vialpando", - "Score": 22, - "Ping": 155 + "Name": "[SAFD] Tyrone_McClain", + "Score": 31, + "Ping": 189 }, { "Id": 9, - "Name": "[SAPD] Hendrix_Anderson", - "Score": 33, - "Ping": 93 + "Name": "ibr_Bremooo", + "Score": 0, + "Ping": 97 }, { "Id": 10, - "Name": "[NG] Mark_Chesterfield", + "Name": "[WWI] Andrew_Wilson", "Score": 25, - "Ping": 61 + "Ping": 178 }, { "Id": 11, - "Name": "Abu_Hajar", - "Score": 22, - "Ping": 229 + "Name": "Domingo_Vercetti", + "Score": 23, + "Ping": 60 }, { "Id": 12, - "Name": "rob_poiler", - "Score": 5, - "Ping": 253 + "Name": "Kazak_Kodorov", + "Score": 31, + "Ping": 60 }, { "Id": 13, - "Name": "[WWI] Andrew_Wilson", - "Score": 25, - "Ping": 275 + "Name": "Klaus_Becker", + "Score": 21, + "Ping": 82 }, { "Id": 14, "Name": "[SASD] Dom_Hoover", "Score": 24, - "Ping": 64 - }, - { - "Id": 15, - "Name": "[MB] Benson_Corleone", - "Score": 55, - "Ping": 78 + "Ping": 71 }, { "Id": 16, - "Name": "Bofade_Eznuts", - "Score": 26, - "Ping": 41 + "Name": "[NG] Ted_Ehrmantraut", + "Score": 28, + "Ping": 137 }, { "Id": 17, - "Name": "Shubham_Addison", - "Score": 26, - "Ping": 123 - }, - { - "Id": 18, - "Name": "Arturo_Beltran", - "Score": 28, - "Ping": 193 + "Name": "Roman_Vercetti", + "Score": 19, + "Ping": 61 }, { "Id": 19, - "Name": "Vincent_Maranzano", - "Score": 8, - "Ping": 68 + "Name": "[SASD] Adel_Lordran", + "Score": 26, + "Ping": 189 }, { "Id": 20, - "Name": "[LSV] Tony_Frost", - "Score": 24, - "Ping": 92 + "Name": "Hasan_Hahaha", + "Score": 0, + "Ping": 81 }, { "Id": 21, - "Name": "Sidi_Boundagani", - "Score": 23, - "Ping": 57 + "Name": "Rob_Persway", + "Score": 6, + "Ping": 255 }, { "Id": 22, - "Name": "Hadleigh_Vanidestine", - "Score": 26, - "Ping": 71 + "Name": "Carlo_Vercetti", + "Score": 57, + "Ping": 51 }, { "Id": 23, - "Name": "Antonio_Vercetti", - "Score": 36, - "Ping": 36 + "Name": "Bofade_Eznuts", + "Score": 26, + "Ping": 45 }, { "Id": 24, - "Name": "[HC] Dylan_Becker", - "Score": 25, - "Ping": 51 + "Name": "Hutero_Crazy", + "Score": 49, + "Ping": 117 }, { "Id": 25, - "Name": "Kazak_Kodorov", - "Score": 31, - "Ping": 56 + "Name": "Mike_Legend", + "Score": 23, + "Ping": 210 }, { "Id": 26, - "Name": "Amaya_Dobre", - "Score": 12, - "Ping": 327 + "Name": "[SAFD] Simon_Gofrowsky", + "Score": 27, + "Ping": 81 }, { "Id": 27, - "Name": "Luka_Stojicevic", - "Score": 9, - "Ping": 51 + "Name": "Elias_Rumph", + "Score": 8, + "Ping": 62 }, { "Id": 28, - "Name": "Henry_Narkaman", - "Score": 2, - "Ping": 97 + "Name": "[GSF] James_Perkin", + "Score": 31, + "Ping": 158 }, { "Id": 29, - "Name": "Kapllan_Doda", - "Score": 2, - "Ping": 61 + "Name": "[NG] Shawn_Cooper", + "Score": 28, + "Ping": 60 }, { "Id": 30, - "Name": "Nick_Coleman", - "Score": 8, - "Ping": 295 + "Name": "Viktor_Addlson", + "Score": 28, + "Ping": 128 }, { "Id": 31, - "Name": "Valode_Narkaman", - "Score": 6, - "Ping": 82 + "Name": "jhon", + "Score": 0, + "Ping": 282 }, { "Id": 32, - "Name": "Elias_Rumph", - "Score": 8, - "Ping": 62 + "Name": "[MB] Benson_Corleone", + "Score": 55, + "Ping": 81 }, { "Id": 33, - "Name": "Alex_Kanriz", - "Score": 12, - "Ping": 175 + "Name": "[SASD] Franklin_Grey", + "Score": 26, + "Ping": 55 }, { "Id": 34, - "Name": "[NBA] Percy_WiIliams", - "Score": 24, - "Ping": 149 - }, - { - "Id": 35, - "Name": "[WWI] Giovanni_Russell", - "Score": 9, - "Ping": 66 + "Name": "[WWI] Ignaz_Becker", + "Score": 21, + "Ping": 76 }, { "Id": 36, - "Name": "Malena_Vasquez", - "Score": 25, - "Ping": 208 - }, - { - "Id": 37, - "Name": "Luis_Muller", - "Score": 15, - "Ping": 176 + "Name": "Matthew_Reiner", + "Score": 32, + "Ping": 46 }, { "Id": 38, - "Name": "Mike_Jonne", - "Score": 13, - "Ping": 20 + "Name": "Mimos_Hammi", + "Score": 23, + "Ping": 143 }, { "Id": 39, - "Name": "Matthew_Reiner", - "Score": 32, - "Ping": 52 + "Name": "Szopjal_Geci", + "Score": 8, + "Ping": 61 }, { "Id": 40, - "Name": "Kishore_Hope", - "Score": 19, - "Ping": 274 + "Name": "Jacob_Harlon", + "Score": 20, + "Ping": 50 }, { "Id": 41, - "Name": "[SASD] Enzo_Harrison", - "Score": 29, - "Ping": 238 + "Name": "[SAPD] Yoru_Becker", + "Score": 20, + "Ping": 86 }, { "Id": 42, - "Name": "[FBI] Alan_Reins", - "Score": 23, - "Ping": 181 + "Name": "Seyhan_Addison", + "Score": 30, + "Ping": 178 }, { "Id": 43, - "Name": "Akash_Rolex", - "Score": 6, - "Ping": 175 - }, - { - "Id": 44, - "Name": "[GSF] Sali_Cross", - "Score": 27, + "Name": "[FBI] Mircea_Niko", + "Score": 20, "Ping": 61 }, { "Id": 45, - "Name": "[FBI] Omer_Azeez", - "Score": 28, - "Ping": 30 + "Name": "Dominique_Johnsons", + "Score": 9, + "Ping": 24 }, { "Id": 46, - "Name": "Kill_Dinks", - "Score": 17, - "Ping": 123 + "Name": "[SASD] Nabster_Kowalski", + "Score": 16, + "Ping": 76 }, { "Id": 47, - "Name": "[NBA] Lamar_Anderson", - "Score": 30, - "Ping": 82 + "Name": "[NG] Mark_Chesterfield", + "Score": 25, + "Ping": 70 }, { "Id": 48, - "Name": "[SAPD] Bret_Reigns", - "Score": 37, - "Ping": 72 + "Name": "Daniel_Wellington", + "Score": 21, + "Ping": 137 }, { "Id": 49, - "Name": "[SAPD] Kondo_Tadao", - "Score": 25, - "Ping": 224 - }, - { - "Id": 50, - "Name": "[FBI] Enya_Hernandez", - "Score": 30, - "Ping": 51 - }, - { - "Id": 51, - "Name": "rodriiii_caino", - "Score": 0, - "Ping": 279 + "Name": "Gustavo_Barboza", + "Score": 8, + "Ping": 77 }, { "Id": 52, - "Name": "Alesio_Rumph", - "Score": 12, - "Ping": 52 + "Name": "[VIP] Martin_Winchester", + "Score": 37, + "Ping": 163 }, { "Id": 53, - "Name": "Jack_Vercetti", - "Score": 23, - "Ping": 165 - }, - { - "Id": 54, - "Name": "[NG] Marcus_Fernandes", - "Score": 23, - "Ping": 206 + "Name": "vito_carleone", + "Score": 19, + "Ping": 66 }, { "Id": 55, - "Name": "[NBA] Clayton_Burns", - "Score": 20, - "Ping": 56 + "Name": "[HC] Dylan_becker", + "Score": 25, + "Ping": 55 }, { "Id": 56, - "Name": "Gerald_Bleedson", - "Score": 19, - "Ping": 305 - }, - { - "Id": 57, - "Name": "Sergio.Ramos", - "Score": 0, - "Ping": 103 + "Name": "[SASD] Hammad_Hilton", + "Score": 30, + "Ping": 194 }, { "Id": 58, - "Name": "[NBA] Charles_McTavish", - "Score": 27, - "Ping": 51 + "Name": "Kacper_Kowalski", + "Score": 49, + "Ping": 35 }, { "Id": 59, - "Name": "Cuauhtemoc_Maldonado", - "Score": 24, - "Ping": 77 - }, - { - "Id": 60, - "Name": "Rebel_agosto", - "Score": 0, - "Ping": 160 - }, - { - "Id": 61, - "Name": "Szopjal_Geci", - "Score": 7, - "Ping": 61 + "Name": "[WWI] Smog_Eix", + "Score": 21, + "Ping": 88 }, { "Id": 62, - "Name": "[SAPD] Dinghy_Davidson", - "Score": 44, - "Ping": 87 - }, - { - "Id": 63, - "Name": "Isabella_Vasquez", - "Score": 28, - "Ping": 171 - }, - { - "Id": 64, - "Name": "Clark_Gvardia", - "Score": 8, - "Ping": 76 - }, - { - "Id": 65, - "Name": "Charlotte_Martinez", - "Score": 18, - "Ping": 67 - }, - { - "Id": 66, - "Name": "mike_kings", - "Score": 5, - "Ping": 243 - }, - { - "Id": 67, - "Name": "Hutero_Crazy", - "Score": 49, - "Ping": 72 - }, - { - "Id": 68, - "Name": "[SASD] Franklin_Grey", - "Score": 26, - "Ping": 50 - }, - { - "Id": 69, - "Name": "Hector_Huerta", - "Score": 23, - "Ping": 201 - }, - { - "Id": 70, - "Name": "PW_Arshin", - "Score": 0, - "Ping": 170 - }, - { - "Id": 71, - "Name": "[SWAT] Louis_Fratto", - "Score": 18, - "Ping": 193 - }, - { - "Id": 72, - "Name": "[SASD] Hammad_Hilton", - "Score": 30, - "Ping": 369 - }, - { - "Id": 73, - "Name": "[SAPD] Billu_Morrison", - "Score": 23, - "Ping": 922 - }, - { - "Id": 74, - "Name": "John_Caruso", - "Score": 22, - "Ping": 82 - }, - { - "Id": 75, - "Name": "Kenard_Bozb", - "Score": 17, - "Ping": 36 - }, - { - "Id": 77, - "Name": "gtag", - "Score": 0, - "Ping": 242 - }, - { - "Id": 78, - "Name": "Donny_Charleston", - "Score": 28, - "Ping": 41 - }, - { - "Id": 79, - "Name": "Drew_Tattaglia", - "Score": 6, - "Ping": 56 - }, - { - "Id": 80, - "Name": "[GSF] Dikembe_Dalton", - "Score": 17, - "Ping": 77 - }, - { - "Id": 81, - "Name": "Justin_Swift", - "Score": 28, - "Ping": 186 - }, - { - "Id": 82, - "Name": "Viktor_Addlson", - "Score": 28, - "Ping": 135 - }, - { - "Id": 83, - "Name": "Denzel_Costa", - "Score": 25, - "Ping": 243 - }, - { - "Id": 84, - "Name": "Rowan_Rojas", - "Score": 25, - "Ping": 176 - }, - { - "Id": 85, - "Name": "[GSF] Jax_Kingston", - "Score": 34, - "Ping": 66 - }, - { - "Id": 86, - "Name": "[VIP] Shanell_Fairfield", - "Score": 60, - "Ping": 92 - }, - { - "Id": 87, - "Name": "[WWI] Nina_Tech", - "Score": 27, - "Ping": 125 - }, - { - "Id": 88, - "Name": "Ive_Harmon", - "Score": 35, - "Ping": 83 - }, - { - "Id": 89, - "Name": "Omar_Beausejour", - "Score": 10, - "Ping": 25 - }, - { - "Id": 90, - "Name": "Yuniel_Contrera", - "Score": 0, - "Ping": 185 - }, - { - "Id": 91, - "Name": "Mark_Schafer", - "Score": 19, - "Ping": 103 - }, - { - "Id": 92, - "Name": "Bintang_Pamungkas", - "Score": 0, - "Ping": 358 + "Name": "Damien_Taylor", + "Score": 20, + "Ping": 112 }, { - "Id": 93, - "Name": "Gerald_Harris", - "Score": 11, - "Ping": 113 + "Id": 76, + "Name": "Tanay_Curtis", + "Score": 21, + "Ping": 108 } ] ``` diff --git a/docs/tests/SampTests/GetStatusTest.md b/docs/tests/SampTests/GetStatusTest.md index 726ee0f..69693fe 100644 --- a/docs/tests/SampTests/GetStatusTest.md +++ b/docs/tests/SampTests/GetStatusTest.md @@ -9,7 +9,7 @@ Here are the results for the test method. ```json { "Password": false, - "NumPlayers": 94, + "NumPlayers": 52, "MaxPlayers": 250, "ServerName": "[ENG] Valrise RPG", "GameType": "Valrise RP 2.0.13 (RPG/RP)", diff --git a/docs/tests/SourceTests/GetInfoTest.md b/docs/tests/SourceTests/GetInfoTest.md index 4d0d6d4..b9c3f40 100644 --- a/docs/tests/SourceTests/GetInfoTest.md +++ b/docs/tests/SourceTests/GetInfoTest.md @@ -15,14 +15,14 @@ Here are the results for the test method. "SteamID": 85568392929506771, "SpectatorPort": 27020, "SpectatorName": "(stv bot)", - "Keywords": "alltalk,increased_maxplayers,payload,shounic", + "Keywords": "alltalk,cp,increased_maxplayers,shounic", "GameID": 440, "Protocol": 17, "Name": "shounic trenches (USA Chicago)", - "Map": "pl_pier", + "Map": "cp_mountainlab", "Folder": "tf", "Game": "Team Fortress", - "Players": 98, + "Players": 99, "MaxPlayers": 100, "Bots": 0, "ServerType": 100, diff --git a/docs/tests/SourceTests/GetPlayersTest.md b/docs/tests/SourceTests/GetPlayersTest.md index ce4e9b4..779c142 100644 --- a/docs/tests/SourceTests/GetPlayersTest.md +++ b/docs/tests/SourceTests/GetPlayersTest.md @@ -9,444 +9,499 @@ Here are the results for the test method. ```json [ { - "Name": "SAMSON(RUS)", - "Score": 23, - "Duration": 10723.83 + "Name": "Haywoood Jablowme", + "Score": 7, + "Duration": 12892.308 }, { - "Name": "turknaskooyun", - "Score": 3, - "Duration": 10723.829 + "Name": "Xtreme_Shoot", + "Score": 0, + "Duration": 10855.669 }, { - "Name": "❤LikeanAngexngelofKzerongRows", - "Score": 14, - "Duration": 10125.511 + "Name": "Ignis", + "Score": 0, + "Duration": 9787.437 }, { - "Name": "Baeplush", - "Score": 9, - "Duration": 9894.555 + "Name": "OMGEngineer", + "Score": 8, + "Duration": 9694.301 }, { - "Name": "Scrimblo I", - "Score": 1, - "Duration": 9513.253 + "Name": "grrr i hate mondeys!!!", + "Score": 15, + "Duration": 9073.1455 }, { - "Name": "Mike1633", + "Name": "Dragrandir", "Score": 8, - "Duration": 9071.885 + "Duration": 7966.796 }, { - "Name": "Flightkitten #SAVETF2", - "Score": 0, - "Duration": 8115.799 + "Name": "Nokia_Legends03", + "Score": 4, + "Duration": 7536.5454 }, { - "Name": "-W3E-GoatTheftAuto", - "Score": 2, - "Duration": 7857.664 + "Name": "techno machine.", + "Score": 0, + "Duration": 6349.345 }, { - "Name": "lolman165", - "Score": 9, - "Duration": 7804.669 + "Name": "Ammonsu", + "Score": 17, + "Duration": 5914.4204 }, { - "Name": "A10-kentaco", - "Score": 0, - "Duration": 7560.6255 + "Name": "Jaden", + "Score": 17, + "Duration": 5821.4805 }, { - "Name": "Galaktus", - "Score": 0, - "Duration": 6625.4897 + "Name": "FaNTaSTiK_v2", + "Score": 7, + "Duration": 5738.966 }, { - "Name": "Rody", - "Score": 5, - "Duration": 6297.642 + "Name": "Franva97", + "Score": 8, + "Duration": 5564.9053 }, { - "Name": "Arck0s", - "Score": 8, - "Duration": 6056.5024 + "Name": "I Broke My Ankles", + "Score": 9, + "Duration": 5550.5205 }, { - "Name": "_shrub", - "Score": 3, - "Duration": 5848.0625 + "Name": "Qeb", + "Score": 17, + "Duration": 5068.256 }, { - "Name": "JonasVenture", - "Score": 5, - "Duration": 5743.347 + "Name": "Korokomancer", + "Score": 3, + "Duration": 4628.947 }, { - "Name": "palo_jr", - "Score": 8, - "Duration": 5713.857 + "Name": "The Gamering", + "Score": 10, + "Duration": 4388.302 }, { - "Name": "♡★Niko (she/her)★♡", - "Score": 3, - "Duration": 5447.907 + "Name": "max", + "Score": 14, + "Duration": 4355.3315 }, { - "Name": "Ricou [Fr]", - "Score": 2, - "Duration": 5341.287 + "Name": "FAILEDFEMBOY", + "Score": 5, + "Duration": 4255.4614 }, { - "Name": "X--N", - "Score": 4, - "Duration": 4780.3174 + "Name": "Discommodious", + "Score": 1, + "Duration": 4017.2327 }, { - "Name": "mgray245", + "Name": "Sakas -DMC-", "Score": 1, - "Duration": 4766.5625 + "Duration": 3734.7507 }, { - "Name": "妹控", - "Score": 8, - "Duration": 4248.594 + "Name": "abog.nicolasludu", + "Score": 0, + "Duration": 3609.3848 }, { - "Name": "Green Horse", + "Name": "Atlatlatlatlatlatlatlatlist", "Score": 0, - "Duration": 4138.517 + "Duration": 3566.4148 }, { - "Name": "DUSTBOWL", - "Score": 8, - "Duration": 4120.727 + "Name": "pvt. johnson", + "Score": 2, + "Duration": 3516.9446 }, { - "Name": "[DB] Plecoman", + "Name": "", "Score": 0, - "Duration": 3593.2979 + "Duration": 3488.5647 }, { - "Name": "j-chou2", - "Score": 0, - "Duration": 3590.8228 + "Name": "Scuffed katana+9 PvP stones+4", + "Score": 3, + "Duration": 3373.0796 }, { - "Name": "linuxlove", - "Score": 8, - "Duration": 3455.7778 + "Name": "SmugEngineer", + "Score": 13, + "Duration": 3315.2246 }, { - "Name": "agent_1", + "Name": "Scharf", + "Score": 14, + "Duration": 3298.8743 + }, + { + "Name": "woxic", + "Score": 16, + "Duration": 3241.3796 + }, + { + "Name": "Danny", "Score": 2, - "Duration": 3251.733 + "Duration": 3099.2395 }, { - "Name": "Kugibat", - "Score": 20, - "Duration": 3228.9028 + "Name": "Egor Chekist", + "Score": 2, + "Duration": 3090.6592 }, { - "Name": "kanade", + "Name": "Tipper", "Score": 0, - "Duration": 3102.993 + "Duration": 3056.1748 }, { - "Name": "Yu so Kawaii | إيّاد", - "Score": 0, - "Duration": 3080.6125 + "Name": "SorcererCat", + "Score": 2, + "Duration": 2968.9792 + }, + { + "Name": "ironwall", + "Score": 15, + "Duration": 2956.5144 }, { - "Name": "Maxxuwukawaii", + "Name": "мя.Gäto", "Score": 9, - "Duration": 2785.1128 + "Duration": 2938.1545 }, { - "Name": "YHWH", - "Score": 4, - "Duration": 2777.3428 + "Name": "Kaenbyou", + "Score": 7, + "Duration": 2898.944 }, { - "Name": "Metalclaw24601", - "Score": 0, - "Duration": 2589.2388 + "Name": "beep!", + "Score": 7, + "Duration": 2817.3594 }, { - "Name": "Power", - "Score": 10, - "Duration": 2575.2588 + "Name": "puppies are damn liars", + "Score": 7, + "Duration": 2733.0251 }, { - "Name": "Malaysia Airlines Flight 370", - "Score": 2, - "Duration": 2358.8398 + "Name": "SerpentSnekko", + "Score": 6, + "Duration": 2538.227 + }, + { + "Name": "RainTimes", + "Score": 18, + "Duration": 2449.5237 }, { - "Name": "super F", + "Name": "Mew Kirby", + "Score": 10, + "Duration": 2365.154 + }, + { + "Name": "LiquidTiberium77", "Score": 5, - "Duration": 2282.865 + "Duration": 2342.8342 }, { - "Name": "obersuchti", - "Score": 2, - "Duration": 2252.8496 + "Name": "Mike Hawk", + "Score": 8, + "Duration": 2317.7842 }, { - "Name": "Iron Fox (Update-sized)", - "Score": 4, - "Duration": 2052.1348 + "Name": "Stalinus", + "Score": 11, + "Duration": 2243.194 }, { - "Name": "Ceol", - "Score": 3, - "Duration": 1996.695 + "Name": "dpy", + "Score": 5, + "Duration": 2242.1743 }, { - "Name": "Shotgun Ed", + "Name": "Cønker", + "Score": 1, + "Duration": 2235.4392 + }, + { + "Name": "vasya666", "Score": 4, - "Duration": 1897.995 + "Duration": 2230.6694 }, { - "Name": "Fasthink", - "Score": 23, - "Duration": 1879.365 + "Name": "Xray Hombre", + "Score": 9, + "Duration": 2202.154 }, { - "Name": "Andy (playing on a Deck)", + "Name": "sause", "Score": 0, - "Duration": 1860.375 + "Duration": 2073.8442 }, { - "Name": "maaxiimiiliiaan", - "Score": 4, - "Duration": 1810.95 + "Name": "Foster Kia", + "Score": 14, + "Duration": 2065.9844 }, { - "Name": "H2O | Aiii", - "Score": 8, - "Duration": 1749.6844 + "Name": "Shooterman8881", + "Score": 7, + "Duration": 2051.0286 }, { - "Name": "ꑭslayerꑭ", - "Score": 1, - "Duration": 1746.8046 + "Name": "SenSation314", + "Score": 2, + "Duration": 1806.8595 }, { - "Name": "FreeAndLit", + "Name": "PredatedElk6", + "Score": 8, + "Duration": 1785.2592 + }, + { + "Name": "-Krv Oz-", "Score": 7, - "Duration": 1681.7045 + "Duration": 1696.9663 }, { - "Name": "Noct Gar", - "Score": 9, - "Duration": 1604.8444 + "Name": "barn farts", + "Score": 4, + "Duration": 1689.4813 }, { - "Name": "caesar029", - "Score": 1, - "Duration": 1599.1444 + "Name": "Averageman", + "Score": 5, + "Duration": 1664.9712 }, { - "Name": "//HEI-HIKO", - "Score": 0, - "Duration": 1583.2747 + "Name": "Bucket Axolotl", + "Score": 5, + "Duration": 1570.6812 }, { - "Name": "contact", - "Score": 1, - "Duration": 1518.1295 + "Name": "Capitão Xorume", + "Score": 2, + "Duration": 1555.4562 }, { - "Name": "Bziim", - "Score": 8, - "Duration": 1459.3446 + "Name": "Tap_ok", + "Score": 6, + "Duration": 1468.6064 }, { - "Name": "zedd11dave", - "Score": 3, - "Duration": 1429.0594 + "Name": "scrupeeno", + "Score": 14, + "Duration": 1243.1262 }, { - "Name": "有咩留番拜山先講", - "Score": 15, - "Duration": 1357.7195 + "Name": "LTFreeBorn", + "Score": 1, + "Duration": 1234.0662 }, { - "Name": "TaterTots", + "Name": "Evil Quak", "Score": 4, - "Duration": 1191.0706 + "Duration": 1185.4512 }, { - "Name": "neptune gear", - "Score": 2, - "Duration": 1184.6205 + "Name": "yerrrwhatupp", + "Score": 7, + "Duration": 1145.0115 }, { - "Name": "aradia megido", - "Score": 2, - "Duration": 1182.4153 + "Name": "wes", + "Score": 17, + "Duration": 1134.8113 }, { - "Name": "Kaiji", - "Score": 1, - "Duration": 1158.9407 + "Name": "Mama Looigi", + "Score": 7, + "Duration": 1114.3811 }, { - "Name": "joshuarhodeshall", - "Score": 3, - "Duration": 1142.9805 + "Name": "MediaevalJulio14", + "Score": 10, + "Duration": 1061.5168 }, { - "Name": "pedroxom", + "Name": "Potato", + "Score": 17, + "Duration": 1041.5819 + }, + { + "Name": "WAAGGHH Enjoyer", "Score": 2, - "Duration": 1107.4905 + "Duration": 1017.34204 }, { - "Name": "Galen Weston Jr.", - "Score": 10, - "Duration": 1083.2351 + "Name": "Fox News at 21", + "Score": 6, + "Duration": 1013.0969 }, { - "Name": "Grave Digger", - "Score": 3, - "Duration": 1079.4106 + "Name": "KRY23", + "Score": 18, + "Duration": 982.61676 }, { - "Name": "Faith", - "Score": 5, - "Duration": 1003.82544 + "Name": "eggman (real)", + "Score": 4, + "Duration": 913.4521 }, { - "Name": "Lin", - "Score": 2, - "Duration": 958.6601 + "Name": "Fabio292", + "Score": 26, + "Duration": 816.16205 }, { - "Name": "Ex1t", - "Score": 0, - "Duration": 933.8505 + "Name": "Box", + "Score": 16, + "Duration": 782.8317 }, { - "Name": "Kokadosh", - "Score": 2, - "Duration": 893.95 + "Name": "Cappuccino シ", + "Score": 10, + "Duration": 777.3557 }, { - "Name": "meow \uD83D\uDC3E", - "Score": 7, - "Duration": 836.9804 + "Name": "Soul", + "Score": 5, + "Duration": 751.1384 }, { - "Name": "Scuffed katana+9 PvP stones+4", - "Score": 0, - "Duration": 716.65045 + "Name": "medoct", + "Score": 15, + "Duration": 746.5483 }, { - "Name": "cool ass blue dominus", - "Score": 5, - "Duration": 632.80054 + "Name": "SlopJoe", + "Score": 9, + "Duration": 728.21716 }, { - "Name": "I enjoy bullying furries", - "Score": 0, - "Duration": 616.96063 + "Name": "Wizzisaurio", + "Score": 5, + "Duration": 723.16266 }, { - "Name": "Asmodeus", + "Name": "Karnnos", "Score": 1, - "Duration": 596.5753 + "Duration": 720.208 }, { - "Name": "pipidaster131", + "Name": "joe cool", "Score": 0, - "Duration": 530.93207 + "Duration": 717.1477 }, { - "Name": "doghouse", - "Score": 4, - "Duration": 482.65485 + "Name": "OberUberWurst", + "Score": 7, + "Duration": 708.98773 }, { - "Name": "Piranha Plant", - "Score": 9, - "Duration": 473.33975 + "Name": "Caxps", + "Score": 6, + "Duration": 697.5715 }, { - "Name": "TR", - "Score": 0, - "Duration": 448.965 + "Name": "kerber_", + "Score": 5, + "Duration": 646.2303 }, { - "Name": "McBain", + "Name": "Kislotnitsa", "Score": 9, - "Duration": 427.77005 + "Duration": 634.2449 }, { - "Name": "Tarik Nakich", - "Score": 4, - "Duration": 384.78003 + "Name": "kiwi", + "Score": 13, + "Duration": 623.0246 }, { - "Name": "IsaacLQM", - "Score": 2, - "Duration": 376.85544 + "Name": "hippo kingdom", + "Score": 11, + "Duration": 618.0301 }, { - "Name": "cracoas", - "Score": 9, - "Duration": 325.00507 + "Name": "\uD83D\uDC27Linux Gaming\uD83D\uDC27", + "Score": 2, + "Duration": 584.04 }, { - "Name": "Pan", + "Name": "Slimsin", "Score": 4, - "Duration": 303.19504 + "Duration": 459.4801 }, { - "Name": "SolarHuntress", - "Score": 4, - "Duration": 276.44986 + "Name": "Pastenik", + "Score": 5, + "Duration": 448.3801 }, { - "Name": "Krauss Von Dunkel", - "Score": 3, - "Duration": 246.94507 + "Name": "MysteryFingerz", + "Score": 5, + "Duration": 419.76013 }, { - "Name": "Anglo-Tzar", - "Score": 0, - "Duration": 182.71497 + "Name": "Peace", + "Score": 2, + "Duration": 364.70972 }, { - "Name": "Europan Hookmouth", - "Score": 2, - "Duration": 164.52005 + "Name": "$1.50 costco hotdog", + "Score": 7, + "Duration": 355.36517 }, { - "Name": "Subway_Santa", + "Name": "QuackCocaine", "Score": 0, - "Duration": 163.39503 + "Duration": 321.7201 }, { - "Name": "fhtep1234", + "Name": "Pestilential", "Score": 0, - "Duration": 148.9949 + "Duration": 304.27524 }, { - "Name": "Periquito Luz", + "Name": "T I M A S", + "Score": 6, + "Duration": 243.40459 + }, + { + "Name": "Revelry", + "Score": 6, + "Duration": 241.23027 + }, + { + "Name": "Titus", + "Score": 1, + "Duration": 114.75017 + }, + { + "Name": "Ihrga", "Score": 0, - "Duration": 105.25505 + "Duration": 72.00013 }, { - "Name": "Dawk Rawk", - "Score": 2, - "Duration": 99.10493 + "Name": "davi", + "Score": 0, + "Duration": 52.079937 }, { - "Name": "big meaty claw", + "Name": "", "Score": 0, - "Duration": 88.214745 + "Duration": 5.159999 } ] ``` diff --git a/docs/tests/SourceTests/GetRulesTest.md b/docs/tests/SourceTests/GetRulesTest.md index 749764e..18e0e55 100644 --- a/docs/tests/SourceTests/GetRulesTest.md +++ b/docs/tests/SourceTests/GetRulesTest.md @@ -67,7 +67,7 @@ Here are the results for the test method. "sm_afkm_version": "4.3.0", "sm_algobalance__version": "1.0.0-dev.17", "sm_autorecord_version": "1.3.0", - "sm_nextmap": "pl_cashworks", + "sm_nextmap": "cp_dustbowl", "sm_prof_version": "1.1", "sm_sourcesleuth_version": "1.8.0", "sm_spray_version": "1.3.8", @@ -76,7 +76,7 @@ Here are the results for the test method. "sm_tidychat_version": "0.5", "sourcecomms_version": "1.8.0", "sourcemod_version": "1.12.0.7101", - "stripper_current_file": "pl_pier", + "stripper_current_file": "koth_los_muertos", "stripper_version": "1.2.2", "sv_accelerate": "10", "sv_airaccelerate": "10", @@ -103,7 +103,7 @@ Here are the results for the test method. "sv_steamgroup": "", "sv_stepsize": "18", "sv_stopspeed": "100", - "sv_tags": "alltalk,increased_maxplayers,payload,shounic", + "sv_tags": "alltalk,cp,increased_maxplayers,shounic", "sv_voiceenable": "1", "sv_vote_quorum_ratio": "0.6", "sv_wateraccelerate": "10", @@ -128,12 +128,12 @@ Here are the results for the test method. "tf_force_holidays_off": "0", "tf_gamemode_arena": "0", "tf_gamemode_community": "0", - "tf_gamemode_cp": "0", + "tf_gamemode_cp": "1", "tf_gamemode_ctf": "0", "tf_gamemode_misc": "0", "tf_gamemode_mvm": "0", "tf_gamemode_passtime": "0", - "tf_gamemode_payload": "1", + "tf_gamemode_payload": "0", "tf_gamemode_pd": "0", "tf_gamemode_rd": "0", "tf_gamemode_sd": "0", diff --git a/docs/tests/TeamSpeak3Tests/GetChannelsTest.md b/docs/tests/TeamSpeak3Tests/GetChannelsTest.md index 03d5b21..7a637a8 100644 --- a/docs/tests/TeamSpeak3Tests/GetChannelsTest.md +++ b/docs/tests/TeamSpeak3Tests/GetChannelsTest.md @@ -86,7 +86,7 @@ Here are the results for the test method. "channel_order": "0", "channel_name": "Welcome | Rules in Channel Description", "channel_topic": "", - "total_clients": "9", + "total_clients": "10", "channel_needed_subscribe_power": "0" }, { @@ -95,7 +95,7 @@ Here are the results for the test method. "channel_order": "122", "channel_name": "Lobby 1", "channel_topic": "", - "total_clients": "3", + "total_clients": "5", "channel_needed_subscribe_power": "0" }, { @@ -113,7 +113,7 @@ Here are the results for the test method. "channel_order": "43", "channel_name": "Lobby 3", "channel_topic": "", - "total_clients": "3", + "total_clients": "2", "channel_needed_subscribe_power": "0" }, { @@ -131,7 +131,7 @@ Here are the results for the test method. "channel_order": "605", "channel_name": "Lobby 5", "channel_topic": "We'll eat your tendies", - "total_clients": "0", + "total_clients": "2", "channel_needed_subscribe_power": "0" }, { @@ -140,7 +140,7 @@ Here are the results for the test method. "channel_order": "127", "channel_name": "Lobby 6", "channel_topic": "", - "total_clients": "1", + "total_clients": "2", "channel_needed_subscribe_power": "0" }, { @@ -149,7 +149,7 @@ Here are the results for the test method. "channel_order": "128", "channel_name": "Lobby 7", "channel_topic": "", - "total_clients": "0", + "total_clients": "1", "channel_needed_subscribe_power": "0" }, { @@ -158,7 +158,7 @@ Here are the results for the test method. "channel_order": "338", "channel_name": "Lobby 8", "channel_topic": "Sheep Shaggers United", - "total_clients": "0", + "total_clients": "1", "channel_needed_subscribe_power": "0" }, { @@ -167,7 +167,7 @@ Here are the results for the test method. "channel_order": "714", "channel_name": "Lobby 9", "channel_topic": "", - "total_clients": "0", + "total_clients": "2", "channel_needed_subscribe_power": "0" }, { @@ -176,7 +176,7 @@ Here are the results for the test method. "channel_order": "802", "channel_name": "Lobby 10", "channel_topic": "", - "total_clients": "0", + "total_clients": "1", "channel_needed_subscribe_power": "0" }, { @@ -185,7 +185,7 @@ Here are the results for the test method. "channel_order": "959", "channel_name": "Lobby 11", "channel_topic": "", - "total_clients": "0", + "total_clients": "2", "channel_needed_subscribe_power": "0" }, { @@ -266,7 +266,7 @@ Here are the results for the test method. "channel_order": "1208", "channel_name": "German", "channel_topic": "", - "total_clients": "0", + "total_clients": "2", "channel_needed_subscribe_power": "0" }, { @@ -410,7 +410,7 @@ Here are the results for the test method. "channel_order": "213", "channel_name": "Counter Strike", "channel_topic": "", - "total_clients": "0", + "total_clients": "2", "channel_needed_subscribe_power": "0" }, { @@ -536,7 +536,7 @@ Here are the results for the test method. "channel_order": "246", "channel_name": "VALORANT", "channel_topic": "", - "total_clients": "1", + "total_clients": "3", "channel_needed_subscribe_power": "0" }, { @@ -581,7 +581,7 @@ Here are the results for the test method. "channel_order": "740", "channel_name": "PUBG", "channel_topic": "", - "total_clients": "0", + "total_clients": "1", "channel_needed_subscribe_power": "0" }, { @@ -878,7 +878,7 @@ Here are the results for the test method. "channel_order": "637", "channel_name": "Hollywood", "channel_topic": "pornhub gang", - "total_clients": "4", + "total_clients": "1", "channel_needed_subscribe_power": "0" }, { @@ -1013,7 +1013,7 @@ Here are the results for the test method. "channel_order": "1539", "channel_name": "shemale", "channel_topic": "", - "total_clients": "1", + "total_clients": "0", "channel_needed_subscribe_power": "0" }, { @@ -1121,7 +1121,7 @@ Here are the results for the test method. "channel_order": "1654", "channel_name": "BigBois", "channel_topic": "", - "total_clients": "0", + "total_clients": "2", "channel_needed_subscribe_power": "0" }, { @@ -1148,7 +1148,7 @@ Here are the results for the test method. "channel_order": "1674", "channel_name": "JUU zavod za distroficare", "channel_topic": "", - "total_clients": "5", + "total_clients": "3", "channel_needed_subscribe_power": "0" }, { @@ -1193,7 +1193,7 @@ Here are the results for the test method. "channel_order": "1703", "channel_name": "AFK", "channel_topic": "", - "total_clients": "3", + "total_clients": "0", "channel_needed_subscribe_power": "0" }, { @@ -1301,7 +1301,7 @@ Here are the results for the test method. "channel_order": "1744", "channel_name": "Panolypse", "channel_topic": "", - "total_clients": "2", + "total_clients": "0", "channel_needed_subscribe_power": "0" }, { @@ -1319,7 +1319,7 @@ Here are the results for the test method. "channel_order": "1761", "channel_name": "Valo_EZ_Immo", "channel_topic": "Boosting Haris", - "total_clients": "0", + "total_clients": "5", "channel_needed_subscribe_power": "0" }, { @@ -1328,7 +1328,7 @@ Here are the results for the test method. "channel_order": "1763", "channel_name": "modric fan club", "channel_topic": "", - "total_clients": "2", + "total_clients": "3", "channel_needed_subscribe_power": "0" }, { @@ -1364,7 +1364,7 @@ Here are the results for the test method. "channel_order": "1801", "channel_name": "//////////// Fucken Pubg /////////////", "channel_topic": "", - "total_clients": "4", + "total_clients": "0", "channel_needed_subscribe_power": "0" }, { @@ -1373,7 +1373,7 @@ Here are the results for the test method. "channel_order": "1803", "channel_name": "___Lobotom______FORTNAJŤÁK_JE_BUZNA_____", "channel_topic": "", - "total_clients": "2", + "total_clients": "1", "channel_needed_subscribe_power": "0" }, { @@ -1409,7 +1409,7 @@ Here are the results for the test method. "channel_order": "1820", "channel_name": "SLEPPYSAMSEPISLEPPYSAMSEPI", "channel_topic": "", - "total_clients": "0", + "total_clients": "2", "channel_needed_subscribe_power": "0" }, { @@ -1445,7 +1445,7 @@ Here are the results for the test method. "channel_order": "1827", "channel_name": "Nima and Rofaqa", "channel_topic": "League Of Legends", - "total_clients": "2", + "total_clients": "1", "channel_needed_subscribe_power": "0" }, { @@ -1472,7 +1472,7 @@ Here are the results for the test method. "channel_order": "1877", "channel_name": "MABAR 2", "channel_topic": "GFR SELALU DIHATIKU", - "total_clients": "6", + "total_clients": "0", "channel_needed_subscribe_power": "0" }, { @@ -1571,7 +1571,7 @@ Here are the results for the test method. "channel_order": "1875", "channel_name": "Feds' Channel", "channel_topic": "", - "total_clients": "3", + "total_clients": "0", "channel_needed_subscribe_power": "0" }, { @@ -1625,7 +1625,7 @@ Here are the results for the test method. "channel_order": "1885", "channel_name": "Finiti e spolverati", "channel_topic": "", - "total_clients": "2", + "total_clients": "0", "channel_needed_subscribe_power": "0" }, { @@ -1706,7 +1706,7 @@ Here are the results for the test method. "channel_order": "1895", "channel_name": "UKM", "channel_topic": "", - "total_clients": "0", + "total_clients": "3", "channel_needed_subscribe_power": "0" }, { @@ -1733,7 +1733,7 @@ Here are the results for the test method. "channel_order": "1899", "channel_name": "Arma", "channel_topic": "", - "total_clients": "0", + "total_clients": "3", "channel_needed_subscribe_power": "0" }, { @@ -1751,7 +1751,7 @@ Here are the results for the test method. "channel_order": "1901", "channel_name": "Dlopez", "channel_topic": "", - "total_clients": "0", + "total_clients": "2", "channel_needed_subscribe_power": "0" }, { @@ -1778,7 +1778,16 @@ Here are the results for the test method. "channel_order": "1906", "channel_name": "Rambazamba", "channel_topic": "", - "total_clients": "2", + "total_clients": "1", + "channel_needed_subscribe_power": "0" + }, + { + "cid": "1909", + "pid": "17", + "channel_order": "1907", + "channel_name": "vandagr Hole", + "channel_topic": "", + "total_clients": "0", "channel_needed_subscribe_power": "0" }, { diff --git a/docs/tests/TeamSpeak3Tests/GetClientsTest.md b/docs/tests/TeamSpeak3Tests/GetClientsTest.md index d112096..3708948 100644 --- a/docs/tests/TeamSpeak3Tests/GetClientsTest.md +++ b/docs/tests/TeamSpeak3Tests/GetClientsTest.md @@ -9,332 +9,402 @@ Here are the results for the test method. ```json [ { - "clid": "41542", + "clid": "53712", + "cid": "122", + "client_database_id": "56950", + "client_nickname": "Unknown", + "client_type": "1" + }, + { + "clid": "53688", + "cid": "1763", + "client_database_id": "66041", + "client_nickname": "Valo", + "client_type": "0" + }, + { + "clid": "53637", + "cid": "1664", + "client_database_id": "63780", + "client_nickname": "Turnips", + "client_type": "0" + }, + { + "clid": "53602", "cid": "1222", "client_database_id": "62618", "client_nickname": "mik3", "client_type": "0" }, { - "clid": "41540", - "cid": "1828", - "client_database_id": "76003", - "client_nickname": "TeamSpeakUser11", + "clid": "53530", + "cid": "1763", + "client_database_id": "76161", + "client_nickname": "mynechan", "client_type": "0" }, { - "clid": "41534", - "cid": "1313", - "client_database_id": "67819", - "client_nickname": "Farki", + "clid": "53435", + "cid": "1763", + "client_database_id": "65868", + "client_nickname": "DK7206", "client_type": "0" }, { - "clid": "41494", - "cid": "122", - "client_database_id": "67818", + "clid": "53362", + "cid": "1897", + "client_database_id": "75928", + "client_nickname": "TeamSpeakUser2", + "client_type": "0" + }, + { + "clid": "53324", + "cid": "1210", + "client_database_id": "72460", + "client_nickname": "TeamSpeakUser4", + "client_type": "0" + }, + { + "clid": "53316", + "cid": "1210", + "client_database_id": "75542", "client_nickname": "TeamSpeakUser3", "client_type": "0" }, { - "clid": "41460", - "cid": "1803", - "client_database_id": "75748", - "client_nickname": "PorshB", + "clid": "53252", + "cid": "1907", + "client_database_id": "77145", + "client_nickname": "zeuskeks", "client_type": "0" }, { - "clid": "41458", - "cid": "1828", - "client_database_id": "73733", - "client_nickname": "Gripex", + "clid": "53224", + "cid": "208", + "client_database_id": "61192", + "client_nickname": "Bucky", "client_type": "0" }, { - "clid": "41415", - "cid": "1803", - "client_database_id": "77284", - "client_nickname": "moomn", + "clid": "53590", + "cid": "122", + "client_database_id": "77482", + "client_nickname": "Madjack", "client_type": "0" }, { - "clid": "41386", - "cid": "1803", - "client_database_id": "76924", - "client_nickname": "Matt", + "clid": "53193", + "cid": "873", + "client_database_id": "36502", + "client_nickname": "conrad", "client_type": "0" }, { - "clid": "41385", - "cid": "50", - "client_database_id": "77006", - "client_nickname": "Hebe", + "clid": "53130", + "cid": "1206", + "client_database_id": "74000", + "client_nickname": "scorpionvnt", "client_type": "0" }, { - "clid": "41358", - "cid": "605", - "client_database_id": "75973", - "client_nickname": "Püppi", + "clid": "53126", + "cid": "1206", + "client_database_id": "77021", + "client_nickname": "taylev", "client_type": "0" }, { - "clid": "41323", - "cid": "1886", - "client_database_id": "54014", - "client_nickname": "cesco", + "clid": "53113", + "cid": "818", + "client_database_id": "68305", + "client_nickname": "chi", "client_type": "0" }, { - "clid": "41320", - "cid": "1886", - "client_database_id": "76370", - "client_nickname": "erclaudio", + "clid": "53100", + "cid": "959", + "client_database_id": "75707", + "client_nickname": "Masel", "client_type": "0" }, { - "clid": "41313", - "cid": "43", - "client_database_id": "74940", - "client_nickname": "Foxik", + "clid": "53099", + "cid": "1846", + "client_database_id": "77523", + "client_nickname": "Helix1305", "client_type": "0" }, { - "clid": "41291", + "clid": "53091", "cid": "1", - "client_database_id": "32290", - "client_nickname": "210", + "client_database_id": "5921", + "client_nickname": "GreyGhost", "client_type": "0" }, { - "clid": "41242", - "cid": "1878", - "client_database_id": "74421", - "client_nickname": "TeamSpeakUser", + "clid": "53087", + "cid": "1846", + "client_database_id": "77398", + "client_nickname": "BuaghRoche/ABi", "client_type": "0" }, { - "clid": "41208", - "cid": "50", - "client_database_id": "77009", - "client_nickname": "Thug", + "clid": "53061", + "cid": "1821", + "client_database_id": "77403", + "client_nickname": "sleppy", "client_type": "0" }, { - "clid": "41187", - "cid": "43", - "client_database_id": "66099", - "client_nickname": "Сергей", + "clid": "53022", + "cid": "714", + "client_database_id": "77007", + "client_nickname": "Sir Lanzelot", "client_type": "0" }, { - "clid": "41096", - "cid": "1878", - "client_database_id": "76716", - "client_nickname": "waalaweee", + "clid": "52997", + "cid": "1222", + "client_database_id": "73388", + "client_nickname": "GROVER", "client_type": "0" }, { - "clid": "41083", - "cid": "1767", - "client_database_id": "76045", - "client_nickname": "FitymaHarcos", + "clid": "52995", + "cid": "1900", + "client_database_id": "72542", + "client_nickname": "SGT Persival", "client_type": "0" }, { - "clid": "41064", - "cid": "1540", - "client_database_id": "60799", - "client_nickname": "cambhoy", + "clid": "52947", + "cid": "1313", + "client_database_id": "67818", + "client_nickname": "TeamSpeakUser31", "client_type": "0" }, { - "clid": "41058", - "cid": "1878", - "client_database_id": "76050", - "client_nickname": "`Hal`Biasa`ko`", + "clid": "52898", + "cid": "128", + "client_database_id": "76328", + "client_nickname": "Samhael246", "client_type": "0" }, { - "clid": "40985", - "cid": "1878", - "client_database_id": "74421", - "client_nickname": "NONAME", + "clid": "52835", + "cid": "1", + "client_database_id": "25219", + "client_nickname": "Hooty1", "client_type": "0" }, { - "clid": "40932", - "cid": "1878", - "client_database_id": "74424", - "client_nickname": "iBOSS", + "clid": "52820", + "cid": "1767", + "client_database_id": "71818", + "client_nickname": "Mikrofon", "client_type": "0" }, { - "clid": "40920", - "cid": "1206", - "client_database_id": "55739", - "client_nickname": "Thiago - REEED", + "clid": "52803", + "cid": "1897", + "client_database_id": "76904", + "client_nickname": "shrns", "client_type": "0" }, { - "clid": "40897", - "cid": "128", - "client_database_id": "77490", - "client_nickname": "Ripper (KiKe)", + "clid": "52802", + "cid": "1767", + "client_database_id": "76045", + "client_nickname": "FitymaHarcos", "client_type": "0" }, { - "clid": "40886", - "cid": "745", - "client_database_id": "28790", - "client_nickname": "[deamon]", + "clid": "52785", + "cid": "1679", + "client_database_id": "54772", + "client_nickname": "toobigtosee", "client_type": "0" }, { - "clid": "40803", - "cid": "1679", - "client_database_id": "71571", - "client_nickname": "ShortOne", + "clid": "52783", + "cid": "50", + "client_database_id": "73684", + "client_nickname": "Halnik", "client_type": "0" }, { - "clid": "40739", - "cid": "1754", - "client_database_id": "49430", - "client_nickname": "Guizmeau", + "clid": "52760", + "cid": "50", + "client_database_id": "77215", + "client_nickname": "Demizon", "client_type": "0" }, { - "clid": "40682", - "cid": "1907", - "client_database_id": "77147", - "client_nickname": "ErlAug", + "clid": "52747", + "cid": "1897", + "client_database_id": "77033", + "client_nickname": "TeamSpeakUser1", "client_type": "0" }, { - "clid": "40609", - "cid": "1876", - "client_database_id": "77341", - "client_nickname": "theokaram", + "clid": "52654", + "cid": "1767", + "client_database_id": "70108", + "client_nickname": "mehmet\uD83D\uDC4D", "client_type": "0" }, { - "clid": "40579", - "cid": "1907", - "client_database_id": "77145", - "client_nickname": "zeuskeks", + "clid": "52616", + "cid": "802", + "client_database_id": "75052", + "client_nickname": "Oh My", "client_type": "0" }, { - "clid": "40547", - "cid": "745", - "client_database_id": "65668", - "client_nickname": "brikulosak1", + "clid": "52582", + "cid": "1679", + "client_database_id": "76305", + "client_nickname": "kmalbasic", "client_type": "0" }, { - "clid": "41299", - "cid": "873", - "client_database_id": "36502", - "client_nickname": "conrad", + "clid": "52327", + "cid": "1902", + "client_database_id": "76553", + "client_nickname": "st.petersburg", "client_type": "0" }, { - "clid": "40495", - "cid": "1876", - "client_database_id": "68469", - "client_nickname": "Dandoun", + "clid": "52309", + "cid": "1313", + "client_database_id": "73941", + "client_nickname": "TeamSpeakUser", "client_type": "0" }, { - "clid": "40419", - "cid": "745", - "client_database_id": "66679", - "client_nickname": "aleš", + "clid": "52239", + "cid": "1828", + "client_database_id": "73733", + "client_nickname": "Gripex", "client_type": "0" }, { - "clid": "40322", - "cid": "1528", - "client_database_id": "56641", - "client_nickname": "Bazyl.", + "clid": "52612", + "cid": "802", + "client_database_id": "72495", + "client_nickname": "Turek", "client_type": "0" }, { - "clid": "40019", - "cid": "1704", - "client_database_id": "76182", - "client_nickname": "CasBah_2016", + "clid": "52215", + "cid": "338", + "client_database_id": "71422", + "client_nickname": "lHelL", "client_type": "0" }, { - "clid": "39973", - "cid": "1754", - "client_database_id": "49284", - "client_nickname": "Hexako", + "clid": "52182", + "cid": "43", + "client_database_id": "74940", + "client_nickname": "Foxik", "client_type": "0" }, { - "clid": "39955", - "cid": "1767", - "client_database_id": "73830", - "client_nickname": "kriszcs1", + "clid": "52150", + "cid": "1900", + "client_database_id": "77471", + "client_nickname": "PVT Monah", "client_type": "0" }, { - "clid": "39895", - "cid": "1704", - "client_database_id": "67150", - "client_nickname": "nomax", + "clid": "53132", + "cid": "122", + "client_database_id": "73041", + "client_nickname": "TeamSpeakUser5", "client_type": "0" }, { - "clid": "39645", + "clid": "51941", "cid": "1679", - "client_database_id": "54773", - "client_nickname": "OganjKaramel", + "client_database_id": "54781", + "client_nickname": "todorovic", "client_type": "0" }, { - "clid": "40348", - "cid": "1206", - "client_database_id": "71422", - "client_nickname": "lHelL", + "clid": "51885", + "cid": "1902", + "client_database_id": "77221", + "client_nickname": "hans", "client_type": "0" }, { - "clid": "39554", - "cid": "1679", - "client_database_id": "54771", - "client_nickname": "Gagi", + "clid": "53027", + "cid": "1763", + "client_database_id": "65945", + "client_nickname": "Blynk", "client_type": "0" }, { - "clid": "38846", - "cid": "1704", - "client_database_id": "69737", - "client_nickname": "BaLoLa", + "clid": "51439", + "cid": "1313", + "client_database_id": "67819", + "client_nickname": "Farki", "client_type": "0" }, { - "clid": "38018", - "cid": "122", + "clid": "51376", + "cid": "1528", + "client_database_id": "56641", + "client_nickname": "Bazyl.", + "client_type": "0" + }, + { + "clid": "51088", + "cid": "1900", + "client_database_id": "71996", + "client_nickname": "LTC John Eagles", + "client_type": "0" + }, + { + "clid": "50541", + "cid": "10", "client_database_id": "2", - "client_nickname": "Echo4191", + "client_nickname": "RankBot1", "client_type": "1" }, { - "clid": "40610", - "cid": "745", - "client_database_id": "28794", - "client_nickname": "gamefir", + "clid": "50280", + "cid": "1528", + "client_database_id": "67733", + "client_nickname": "Dylan", "client_type": "0" }, { - "clid": "26819", - "cid": "10", + "clid": "50190", + "cid": "605", + "client_database_id": "77350", + "client_nickname": "Vlad", + "client_type": "0" + }, + { + "clid": "45352", + "cid": "1", + "client_database_id": "25219", + "client_nickname": "Hooty", + "client_type": "0" + }, + { + "clid": "41291", + "cid": "1", + "client_database_id": "32290", + "client_nickname": "210", + "client_type": "0" + }, + { + "clid": "38018", + "cid": "122", "client_database_id": "2", - "client_nickname": "RankBot", + "client_nickname": "Echo4191", "client_type": "1" }, { @@ -386,6 +456,13 @@ Here are the results for the test method. "client_nickname": "Cav", "client_type": "0" }, + { + "clid": "52552", + "cid": "127", + "client_database_id": "76156", + "client_nickname": "бабуля", + "client_type": "0" + }, { "clid": "23174", "cid": "1372", @@ -393,6 +470,13 @@ Here are the results for the test method. "client_nickname": "NubCake", "client_type": "0" }, + { + "clid": "52166", + "cid": "43", + "client_database_id": "66099", + "client_nickname": "Сергей", + "client_type": "0" + }, { "clid": "23185", "cid": "1372", @@ -407,13 +491,6 @@ Here are the results for the test method. "client_nickname": "Echo419", "client_type": "0" }, - { - "clid": "5117", - "cid": "1", - "client_database_id": "25896", - "client_nickname": "M1™", - "client_type": "0" - }, { "clid": "56220", "cid": "1654", @@ -442,13 +519,6 @@ Here are the results for the test method. "client_nickname": "Baguette", "client_type": "0" }, - { - "clid": "35603", - "cid": "1679", - "client_database_id": "76305", - "client_nickname": "kmalbasic", - "client_type": "0" - }, { "clid": "48704", "cid": "10", @@ -470,13 +540,6 @@ Here are the results for the test method. "client_nickname": "Alfons", "client_type": "0" }, - { - "clid": "41267", - "cid": "1815", - "client_database_id": "73326", - "client_nickname": "Holina88", - "client_type": "0" - }, { "clid": "44840", "cid": "1539", @@ -492,10 +555,10 @@ Here are the results for the test method. "client_type": "0" }, { - "clid": "40868", - "cid": "1222", - "client_database_id": "73388", - "client_nickname": "GROVER", + "clid": "52778", + "cid": "605", + "client_database_id": "72281", + "client_nickname": "XoRneT1", "client_type": "0" }, { @@ -512,6 +575,13 @@ Here are the results for the test method. "client_nickname": "Mike Ashley", "client_type": "0" }, + { + "clid": "53570", + "cid": "1664", + "client_database_id": "63779", + "client_nickname": "Aggressive Sloth", + "client_type": "0" + }, { "clid": "44836", "cid": "1539", @@ -554,6 +624,13 @@ Here are the results for the test method. "client_nickname": "EricAFK", "client_type": "0" }, + { + "clid": "53167", + "cid": "208", + "client_database_id": "61753", + "client_nickname": "Hail Hail", + "client_type": "0" + }, { "clid": "44830", "cid": "122", @@ -561,13 +638,6 @@ Here are the results for the test method. "client_nickname": "VoteBot", "client_type": "0" }, - { - "clid": "41173", - "cid": "1876", - "client_database_id": "77502", - "client_nickname": "Lkaram", - "client_type": "0" - }, { "clid": "24499", "cid": "1535", @@ -575,13 +645,6 @@ Here are the results for the test method. "client_nickname": "FuzzyKripp", "client_type": "0" }, - { - "clid": "41568", - "cid": "122", - "client_database_id": "56950", - "client_nickname": "Unknown", - "client_type": "1" - }, { "clid": "24497", "cid": "1535", @@ -659,6 +722,13 @@ Here are the results for the test method. "client_nickname": "poop", "client_type": "0" }, + { + "clid": "52711", + "cid": "127", + "client_database_id": "76121", + "client_nickname": "Акогданебабуля", + "client_type": "0" + }, { "clid": "10629", "cid": "1654", @@ -666,6 +736,13 @@ Here are the results for the test method. "client_nickname": "bochek", "client_type": "0" }, + { + "clid": "53465", + "cid": "745", + "client_database_id": "28794", + "client_nickname": "gamefir", + "client_type": "0" + }, { "clid": "48701", "cid": "10", @@ -694,13 +771,6 @@ Here are the results for the test method. "client_nickname": "Dubstep", "client_type": "0" }, - { - "clid": "41048", - "cid": "1878", - "client_database_id": "74422", - "client_nickname": "yulaw", - "client_type": "0" - }, { "clid": "23183", "cid": "1372", @@ -722,13 +792,6 @@ Here are the results for the test method. "client_nickname": "The Acid Man", "client_type": "0" }, - { - "clid": "41401", - "cid": "1803", - "client_database_id": "71701", - "client_nickname": "Bibo2018", - "client_type": "0" - }, { "clid": "23933", "cid": "1567", @@ -806,13 +869,6 @@ Here are the results for the test method. "client_nickname": "Metal", "client_type": "0" }, - { - "clid": "41391", - "cid": "1815", - "client_database_id": "71338", - "client_nickname": "Oli_CZ", - "client_type": "0" - }, { "clid": "23923", "cid": "1567", @@ -834,13 +890,6 @@ Here are the results for the test method. "client_nickname": "FDP^Olaf", "client_type": "0" }, - { - "clid": "41348", - "cid": "605", - "client_database_id": "75972", - "client_nickname": "patte3001@gmx.de", - "client_type": "0" - }, { "clid": "60", "cid": "122", @@ -855,6 +904,13 @@ Here are the results for the test method. "client_nickname": "sauna", "client_type": "0" }, + { + "clid": "52891", + "cid": "128", + "client_database_id": "76331", + "client_nickname": "pattty", + "client_type": "0" + }, { "clid": "90", "cid": "1564", @@ -876,6 +932,13 @@ Here are the results for the test method. "client_nickname": "PiP", "client_type": "0" }, + { + "clid": "52887", + "cid": "1815", + "client_database_id": "73326", + "client_nickname": "Holina88", + "client_type": "0" + }, { "clid": "86", "cid": "1564", @@ -890,13 +953,6 @@ Here are the results for the test method. "client_nickname": "Marnie", "client_type": "0" }, - { - "clid": "40577", - "cid": "1679", - "client_database_id": "54781", - "client_nickname": "todorovic", - "client_type": "0" - }, { "clid": "83", "cid": "1546", @@ -925,6 +981,13 @@ Here are the results for the test method. "client_nickname": "Julia", "client_type": "0" }, + { + "clid": "53275", + "cid": "1763", + "client_database_id": "74380", + "client_nickname": "Acnologia69", + "client_type": "0" + }, { "clid": "77", "cid": "1564", @@ -960,13 +1023,6 @@ Here are the results for the test method. "client_nickname": "owo", "client_type": "0" }, - { - "clid": "41351", - "cid": "50", - "client_database_id": "77007", - "client_nickname": "Sir Lanzelot", - "client_type": "0" - }, { "clid": "63", "cid": "1263", @@ -988,13 +1044,6 @@ Here are the results for the test method. "client_nickname": "kawaii", "client_type": "0" }, - { - "clid": "40120", - "cid": "1528", - "client_database_id": "67733", - "client_nickname": "Dylan", - "client_type": "0" - }, { "clid": "23", "cid": "865", @@ -1002,6 +1051,13 @@ Here are the results for the test method. "client_nickname": "WelcomeBot", "client_type": "0" }, + { + "clid": "53616", + "cid": "1821", + "client_database_id": "77404", + "client_nickname": "samsepi1", + "client_type": "0" + }, { "clid": "21", "cid": "1790", diff --git a/docs/tests/TeamSpeak3Tests/GetInfoTest.md b/docs/tests/TeamSpeak3Tests/GetInfoTest.md index feade21..8e9a8c8 100644 --- a/docs/tests/TeamSpeak3Tests/GetInfoTest.md +++ b/docs/tests/TeamSpeak3Tests/GetInfoTest.md @@ -15,10 +15,10 @@ Here are the results for the test method. "virtualserver_version": "3.13.7 [Build: 1655727713]", "virtualserver_maxclients": "512", "virtualserver_password": "", - "virtualserver_clientsonline": "147", - "virtualserver_channelsonline": "199", + "virtualserver_clientsonline": "156", + "virtualserver_channelsonline": "200", "virtualserver_created": "1354223623", - "virtualserver_uptime": "893480", + "virtualserver_uptime": "993082", "virtualserver_codec_encryption_mode": "2", "virtualserver_hostmessage": "[b]Hey! If you enjoy this server [URL=https://teamspeak-servers.org/server/6231/vote/]please vote here![/URL][/b]", "virtualserver_hostmessage_mode": "1", @@ -41,17 +41,17 @@ Here are the results for the test method. "virtualserver_antiflood_points_tick_reduce": "30", "virtualserver_antiflood_points_needed_command_block": "300", "virtualserver_antiflood_points_needed_ip_block": "3000", - "virtualserver_client_connections": "4004", - "virtualserver_query_client_connections": "103006", + "virtualserver_client_connections": "4451", + "virtualserver_query_client_connections": "114686", "virtualserver_hostbutton_tooltip": "SameTeem", "virtualserver_hostbutton_url": "https://sameteem.com/", "virtualserver_hostbutton_gfx_url": "https://sameteem.com/images/STSmall.png", "virtualserver_queryclientsonline": "3", "virtualserver_download_quota": "18446744073709551615", "virtualserver_upload_quota": "18446744073709551615", - "virtualserver_month_bytes_downloaded": "400961386", + "virtualserver_month_bytes_downloaded": "420280215", "virtualserver_month_bytes_uploaded": "1304460", - "virtualserver_total_bytes_downloaded": "1723972454612", + "virtualserver_total_bytes_downloaded": "1723991773441", "virtualserver_total_bytes_uploaded": "1287097939993", "virtualserver_port": "9987", "virtualserver_autostart": "1", @@ -67,11 +67,11 @@ Here are the results for the test method. "virtualserver_name_phonetic": "SameTeemSpeek", "virtualserver_icon_id": "274103382", "virtualserver_reserved_slots": "8", - "virtualserver_total_packetloss_speech": "21.0045", - "virtualserver_total_packetloss_keepalive": "0.5009", - "virtualserver_total_packetloss_control": "0.2516", - "virtualserver_total_packetloss_total": "0.0047", - "virtualserver_total_ping": "64.8542", + "virtualserver_total_packetloss_speech": "19.7683", + "virtualserver_total_packetloss_keepalive": "0.4745", + "virtualserver_total_packetloss_control": "0.2390", + "virtualserver_total_packetloss_total": "0.0038", + "virtualserver_total_ping": "61.6928", "virtualserver_ip": "0.0.0.0, ::", "virtualserver_weblist_enabled": "0", "virtualserver_ask_for_privilegekey": "0", @@ -86,27 +86,27 @@ Here are the results for the test method. "virtualserver_status": "online", "connection_filetransfer_bandwidth_sent": "0", "connection_filetransfer_bandwidth_received": "0", - "connection_filetransfer_bytes_sent_total": "183461864", + "connection_filetransfer_bytes_sent_total": "202787332", "connection_filetransfer_bytes_received_total": "746488", - "connection_packets_sent_speech": "387679238", - "connection_bytes_sent_speech": "55595833233", - "connection_packets_received_speech": "433595427", - "connection_bytes_received_speech": "75972906583", - "connection_packets_sent_keepalive": "212176145", - "connection_bytes_sent_keepalive": "8699221945", - "connection_packets_received_keepalive": "212030781", - "connection_bytes_received_keepalive": "8907836413", - "connection_packets_sent_control": "117653714", - "connection_bytes_sent_control": "26560003336", - "connection_packets_received_control": "117481781", - "connection_bytes_received_control": "9182537821", - "connection_packets_sent_total": "717509097", - "connection_bytes_sent_total": "90855058514", - "connection_packets_received_total": "763107989", - "connection_bytes_received_total": "94063280817", - "connection_bandwidth_sent_last_second_total": "179907", - "connection_bandwidth_sent_last_minute_total": "143662", - "connection_bandwidth_received_last_second_total": "181456", - "connection_bandwidth_received_last_minute_total": "140052" + "connection_packets_sent_speech": "427999465", + "connection_bytes_sent_speech": "60796813162", + "connection_packets_received_speech": "482567406", + "connection_bytes_received_speech": "84118889830", + "connection_packets_sent_keepalive": "235852760", + "connection_bytes_sent_keepalive": "9669963160", + "connection_packets_received_keepalive": "235696249", + "connection_bytes_received_keepalive": "9902068537", + "connection_packets_sent_control": "130838693", + "connection_bytes_sent_control": "29550041852", + "connection_packets_received_control": "130648778", + "connection_bytes_received_control": "10213383583", + "connection_packets_sent_total": "794690918", + "connection_bytes_sent_total": "100016818174", + "connection_packets_received_total": "848912433", + "connection_bytes_received_total": "104234341950", + "connection_bandwidth_sent_last_second_total": "230104", + "connection_bandwidth_sent_last_minute_total": "191579", + "connection_bandwidth_received_last_second_total": "150831", + "connection_bandwidth_received_last_minute_total": "156780" } ``` diff --git a/docs/tests/Unreal2Tests/GetDetailsTest.md b/docs/tests/Unreal2Tests/GetDetailsTest.md index f2ff6d9..dff7245 100644 --- a/docs/tests/Unreal2Tests/GetDetailsTest.md +++ b/docs/tests/Unreal2Tests/GetDetailsTest.md @@ -14,11 +14,11 @@ Here are the results for the test method. "QueryPort": 0, "ServerName": "Uliunai.lt|[v1065]|HOE/Suicidal/Hard|150 LvL|+6 Perks", "MapName": "", - "GameType": "KF-Dark_Underground-EDIT", + "GameType": "KF-No_MercyIII_FIX", "NumPlayers": 1195592971, "MaxPlayers": 1415933281, "Ping": 6647929, - "Flags": 1, + "Flags": 0, "Skill": "" } ``` diff --git a/docs/tests/Unreal2Tests/GetPlayersTest.md b/docs/tests/Unreal2Tests/GetPlayersTest.md index 49c5c20..a239b6f 100644 --- a/docs/tests/Unreal2Tests/GetPlayersTest.md +++ b/docs/tests/Unreal2Tests/GetPlayersTest.md @@ -9,10 +9,31 @@ Here are the results for the test method. ```json [ { - "Id": 81, - "Name": "[RUS]Fluffi", - "Ping": 80, - "Score": 3413, + "Id": 5, + "Name": "[LTU]GrafasNasarnika", + "Ping": 52, + "Score": 2205, + "StatsId": 536870912 + }, + { + "Id": 4, + "Name": "Forex", + "Ping": 64, + "Score": 2096, + "StatsId": 536870912 + }, + { + "Id": 3, + "Name": "H_a_n_a_b_i", + "Ping": 36, + "Score": 2007, + "StatsId": 536870912 + }, + { + "Id": 2, + "Name": "Полковник_Р", + "Ping": 60, + "Score": 2905, "StatsId": 536870912 } ] diff --git a/docs/tests/WONTests/GetInfoTest.md b/docs/tests/WONTests/GetInfoTest.md index 36a22ba..e8b3155 100644 --- a/docs/tests/WONTests/GetInfoTest.md +++ b/docs/tests/WONTests/GetInfoTest.md @@ -18,7 +18,7 @@ Here are the results for the test method. "DLL": 1, "Protocol": 46, "Name": "[Murka] NEW CS1.5 DeathMatch s4ke murka-terroristka.de", - "Map": "de_nuke", + "Map": "de_vertigo", "Folder": "cstrike", "Game": "CounterStrike", "Players": 6, diff --git a/docs/tests/WONTests/GetPlayersTest.md b/docs/tests/WONTests/GetPlayersTest.md index 2e6eee2..15d5b19 100644 --- a/docs/tests/WONTests/GetPlayersTest.md +++ b/docs/tests/WONTests/GetPlayersTest.md @@ -10,33 +10,33 @@ Here are the results for the test method. [ { "Name": "[P*D]Sean_Connery (21)", - "Score": 2, - "Duration": 484893.47 + "Score": 0, + "Duration": 584484.2 }, { "Name": "[P0D]Jim_Carrey (41)", - "Score": 0, - "Duration": 484893.47 + "Score": 1, + "Duration": 584484.2 }, { "Name": "[POD]George_Clooney (61)", "Score": 3, - "Duration": 484893.47 + "Duration": 584484.2 }, { "Name": "[P*D]Pseudolukian (21)", "Score": 0, - "Duration": 484893.47 + "Duration": 584484.2 }, { "Name": "[P0D]Jack_Nicholson (41)", "Score": 0, - "Duration": 484893.47 + "Duration": 584484.2 }, { "Name": "[POD]Jet_Li (61)", - "Score": 1, - "Duration": 484893.47 + "Score": 2, + "Duration": 584484.2 } ] ``` diff --git a/docs/tests/WONTests/GetRulesTest.md b/docs/tests/WONTests/GetRulesTest.md index 22e7881..6be2b15 100644 --- a/docs/tests/WONTests/GetRulesTest.md +++ b/docs/tests/WONTests/GetRulesTest.md @@ -10,8 +10,8 @@ Here are the results for the test method. { "allow_spectators": "0", "amx_client_languages": "0", - "amx_nextmap": "de_piranesi", - "amx_timeleft": "13:32", + "amx_nextmap": "as_oilrig", + "amx_timeleft": "12:57", "amxmodx_version": "1.8.1.3746", "coop": "0", "csdmsake_version": "1.1e",