This commit is contained in:
2026-06-11 13:17:59 +03:00
parent 0f1342d883
commit 443bc2099a
+10 -2
View File
@@ -1,5 +1,5 @@
from mctools import PINGClient from mctools import PINGClient
ping = PINGClient('play.dmcraft.online') ping = PINGClient('localhost')
#stats = ping.get_stats() #stats = ping.get_stats()
#Work with JSON #Work with JSON
@@ -20,10 +20,17 @@ from time import sleep
#Read #Read
read() read()
needsleep = 0
while True: while True:
sleep(1) if needsleep == 30:
needsleep = 0
sleep(30)
else:
sleep(1)
needsleep += 1
try: try:
# if True:
stats = ping.get_stats() stats = ping.get_stats()
if stats['players']['online'] != 0: if stats['players']['online'] != 0:
for i in stats['players']['sample']: for i in stats['players']['sample']:
@@ -37,3 +44,4 @@ while True:
except: except:
print('Maybe server offline') print('Maybe server offline')