on en est a deux dois la. par contre tu immagine a quoi va ressembler la 1.33 sur minecraft ? je suis hype de fou

This commit is contained in:
piair 2023-09-30 18:00:43 +02:00
parent 1e576edc51
commit 56234f2420
2 changed files with 44 additions and 26 deletions

22
V6.py
View File

@ -831,34 +831,52 @@ def very_custom_start(json):
g._mail = cred[0] g._mail = cred[0]
g._password = cred[1] g._password = cred[1]
for j in ["unban", "tout", "pc", "mobile", "log_points"]: for j in ["unban", "tout", "pc", "mobile", "log_points"]:
try :
if str(i) in json[j]: if str(i) in json[j]:
start = True start = True
except KeyError :
pass
if start: if start:
driver = firefox_driver() driver = firefox_driver()
try :
if str(i) in json["unban"]: if str(i) in json["unban"]:
pwd_login(driver) # TODO : define only the first part of login pwd_login(driver) # TODO : define only the first part of login
print("waiting 1000 secs")
sleep(1000)
else : else :
login(driver) login(driver)
except KeyError :
pass
try :
if str(i) in json["tout"]: if str(i) in json["tout"]:
daily_routine(True) daily_routine(True)
except KeyError :
print("none is set to \"tout\"")
else : else :
try :
if str(i) in json["daily"]: if str(i) in json["daily"]:
try: try:
bing_pc_search() bing_pc_search()
except Exception as e: except Exception as e:
log_error(e) log_error(e)
except KeyError :
print("none is set to \"daily\"")
try :
if str(i) in json["pc"]: if str(i) in json["pc"]:
try: try:
bing_pc_search() bing_pc_search()
except Exception as e: except Exception as e:
log_error(e) log_error(e)
except KeyError :
print("none is set to \"pc\"")
try :
if str(i) in json["mobile"]: if str(i) in json["mobile"]:
try: try:
bing_mobile_search() bing_mobile_search()
except Exception as e: except Exception as e:
log_error(e) log_error(e)
except KeyError :
print("none is set to \"mobile\"")
try: try:
log_points(g._mail) log_points(g._mail)
except Exception as e: except Exception as e:

View File

@ -1 +1 @@
v6.6.32 v6.6.33