forked from Strip3s/PhoenixBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.py
56 lines (39 loc) · 999 Bytes
/
settings.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
47
48
49
50
51
52
53
54
55
56
####### Global Variables ######
global webhook
webhook = ""
global webhook_on_browser
webhook_on_browser = True
global webhook_on_order
webhook_on_order = True
global webhook_on_failed
webhook_on_failed = True
global browser_on_failed
browser_on_failed = True
global run_headless
run_headless = True
global bb_ac_beta
bb_ac_beta = False
global dont_buy
dont_buy = False
# TODO: Rename this to match proper format
global userAgent
userAgent = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36"
global random_delay_start
random_delay_start = 10
global random_delay_stop
random_delay_stop = 40
global bestbuy_user
bestbuy_user = ""
global bestbuy_pass
bestbuy_pass = ""
global target_user
target_user = ""
global target_pass
target_pass = ""
global gamestop_user
gamestop_user = ""
global gamestop_pass
gamestop_pass = ""
global geckodriver_path
geckodriver_path = ""
#################################################