-
Notifications
You must be signed in to change notification settings - Fork 2
/
config.py
29 lines (22 loc) · 981 Bytes
/
config.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
# Login details
username = ''
password = ''
token = ''
# How much will this program run?
max_bet_number = 0 # 0 is infinity
min_balance = 0 # Stop playing when reached min_balance
max_balance = 10000000 # Stop playing when reached max_balance
wait_time = 0.48 # Seconds to wait between requests most efficient wait time is 0.48
# Betting strategy
base_bet = 2 # minimum = 1
win_chance = 10 # maximum = 98
maximum_bet = 150000 # 1000000 = 0.01 BTC
after_loss_multiplier = 1.12 # 1 - do not multiply, 0 - return to base bet
after_win_multiplier = 0 # 1 - do not multiply, 0 - return to base bet
after_loss_sum = 0 # after multiply, if lost, sum this
after_win_sum = 0 # after multiply, if win, sum this
seed_win = 50 # change seed every no. wins
#auto withdraw stuff
withbal = 1438645 #bitcoin balance point
withdrawamount = 143864 # withdraw amount once you reach the withbal amount
withdrawaddress = "1Mmn7AD5sDoY9Kv72WJtCRZhL3eEAcFbf1" #bitcoin withdraw address