backup
Void User 2 years ago
parent ef233396aa
commit 97cf6b1959

@ -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:
if needsleep == 30:
needsleep = 0
sleep(30)
else:
sleep(1) 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')

Loading…
Cancel
Save