You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Returns the current player count along with the player count of each public game + mode on the server.
4
+
Returns the current player count along with the player count of each public game + mode on the server.
5
5
6
6
Due to the large amount of modes and that they can change at anytime we don't currently have a friendly list of mode keys to clean names. This may be added at a later date.
7
-
7
+
8
8
## Parameters
9
9
- key
10
10
11
-
## Example Player Count
12
-
```php
11
+
## Example Response
12
+
```js
13
13
{
14
-
"games": {
15
-
"BUILD_BATTLE": { // The GameType Name
16
-
"modes": {
17
-
"BUILD_BATTLE_HALLOWEEN": 82, // The mode key along with the player count
18
-
"BUILD_BATTLE_GUESS_THE_BUILD": 177,
19
-
"BUILD_BATTLE_TEAMS_NORMAL": 512,
20
-
"BUILD_BATTLE_SOLO_NORMAL": 440,
21
-
"BUILD_BATTLE_SOLO_PRO": 114
22
-
},
23
-
"players": 1453 // Total players for the GameType
24
-
}
25
-
},
26
-
"playerCount": 59715
14
+
"success":true,
15
+
"games": {
16
+
"SKYBLOCK": { // The GameType Name
17
+
"players":30522, // Total players for the GameType
18
+
"modes": {
19
+
"combat_1":690, // The mode key along with the player count
20
+
"foraging_1":1456,
21
+
"hub":8049,
22
+
"mining_2":1062,
23
+
"combat_2":277,
24
+
"farming_2":247,
25
+
"mining_1":300,
26
+
"farming_1":204,
27
+
"combat_3":2350,
28
+
"dynamic":15888
29
+
}
30
+
}
31
+
},
32
+
"playerCount":77238// Total players on the network
0 commit comments