-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGretchen.py
46 lines (37 loc) · 840 Bytes
/
Gretchen.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
39
40
41
42
43
44
45
46
#from GUI import *
from Fbot import *
import time
tor_socks_ip = 'localhost'
tor_socks_port = 9050
class Fconfig:
server_ip = '94.23.237.127'
server_port = 2238
# no proxy is empty string
proxy_socks4_ip = ''
proxy_socks4_port = tor_socks_port
msg_antialt_keyH = 'xxxxxxxx'
msg_antialt_keyL = 'xxxxxxxx'
msg_antialt_key1 = 'xxxxxxxx'
msg_antialt_key2 = 'xxxxxxxx'
msg_antialt_key3 = 'xxxxxxxx'
login_id = 13129
login_username = 'Gretchen'
login_password = 'xxxxxxxx'
target_id = 8394
number_of_punch = 65
time_to_heal = 130
# def poll():
# gui.after(200, poll)
# gui.refresh()
# if __name__ == '__main__':
# gui = GUI(Fconfig)
# poll()
# gui.mainloop()
# gui.clean()
if __name__ == '__main__':
while(True):
bot = Fbot(Fconfig)
while(bot.isRunning()):
time.sleep(1)
bot.join()
time.sleep(10)