-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
38 lines (28 loc) · 1.07 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import os
import random
import requests
import threading
class stats():
hits = 0
failed = 0
os.system("cls")
threads = int(input("Threads: "))
code = input("Code to bot --> ")
def click():
try:
os.system(f"title Dsc.gg Clicks Bot by @mefyy.dev ^| Hits: {stats.hits} ^| Failed {stats.failed}")
proxys = open('proxies.txt', 'r').read().splitlines()
proxy = random.choice(proxys)
proxies = {'http': f'http://{proxy}', 'https':f'http://{proxy}'}
headers = {
'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"',
'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36',
}
r = requests.get(f"https://dsc.gg/{code}?ref=homepage", headers=headers, proxies=proxies)
stats.hits += 1
except:
stats.failed += 1
while True:
if threading.active_count() < threads:
for x in range(threads):
threading.Thread(target=click).start()