You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
302 B

2 years ago
#ONLY FOR HOME USING!!!
#NO PROXY
#NO NULLPING
from mctools import PINGClient
#My libraries
from time import sleep
2 years ago
import threading
2 years ago
2 years ago
def main():
ping = PINGClient('127.0.0.1', 25577)
while True:
sleep(0.00001)
ping.ping()
2 years ago
2 years ago
for i in range(10000):
th = threading.Thread(target=main)
th.start()