remove Token (oopsi)
This commit is contained in:
parent
182ac25aad
commit
7cffbc93da
10
V4.py
10
V4.py
|
@ -72,9 +72,11 @@ def FirefoxPC(Headless = Headless):
|
||||||
if IsLinux :
|
if IsLinux :
|
||||||
MotPath = "/home/pi/MsReward/liste.txt"
|
MotPath = "/home/pi/MsReward/liste.txt"
|
||||||
LogPath= "/home/pi/MsReward/login.csv"
|
LogPath= "/home/pi/MsReward/login.csv"
|
||||||
|
TokenPath = "/home/pi/token.txt"
|
||||||
else :
|
else :
|
||||||
MotPath = resource_path('./liste/liste.txt')
|
MotPath = resource_path('./liste/liste.txt')
|
||||||
LogPath = resource_path('./login/login.csv')
|
LogPath = resource_path('./login/login.csv')
|
||||||
|
TokenPath = resource_path('./token/token.txt')
|
||||||
system("")
|
system("")
|
||||||
|
|
||||||
|
|
||||||
|
@ -82,7 +84,9 @@ else :
|
||||||
g = open(MotPath, "r" , encoding="utf-8")
|
g = open(MotPath, "r" , encoding="utf-8")
|
||||||
Liste_de_mot=(list(g.readline().split(',')))
|
Liste_de_mot=(list(g.readline().split(',')))
|
||||||
g.close()
|
g.close()
|
||||||
|
g = open(TokenPath,"r")
|
||||||
|
Token = g.readline()
|
||||||
|
g.close
|
||||||
|
|
||||||
|
|
||||||
def CustomSleep(temps):
|
def CustomSleep(temps):
|
||||||
|
@ -137,7 +141,7 @@ def LogError(message,log = False):
|
||||||
await client.close()
|
await client.close()
|
||||||
|
|
||||||
|
|
||||||
client.run('ODMzMjc2MDU1ODk2NDU3MjI2.YHv-zQ.sxvpqrD9bz-ZQAb8lKhy_4hwUU8')
|
client.run(Token)
|
||||||
|
|
||||||
|
|
||||||
def progressBar(current, total=30, barLength = 20, name ="Progress"):
|
def progressBar(current, total=30, barLength = 20, name ="Progress"):
|
||||||
|
@ -601,7 +605,7 @@ def LogPoint(account, log = False): #log des points sur discord
|
||||||
await client.close()
|
await client.close()
|
||||||
|
|
||||||
|
|
||||||
client.run('ODMzMjc2MDU1ODk2NDU3MjI2.YHv-zQ.sxvpqrD9bz-ZQAb8lKhy_4hwUU8')
|
client.run(Token)
|
||||||
|
|
||||||
|
|
||||||
def Fidelité():
|
def Fidelité():
|
||||||
|
|
Loading…
Reference in New Issue