SHOW:
|
|
- or go back to the newest paste.
1 | -- Dicebender's "winner winner chicken dinner" | |
2 | ||
3 | chance = 49.5 | |
4 | multiplier=1.6 | |
5 | multiplier2=0.50 | |
6 | ||
7 | basebet = balance/1000000 --> Basebet / Minimum Bet -- Can be adjusted to the minumum bet of the chosen coin | |
8 | targetprofit = balance*0.1 --> Target Profit Adjust to at most 10% of Bankroll | |
9 | target = balance+targetprofit | |
10 | ||
11 | nextbet=basebet | |
12 | bethigh=true | |
13 | counter=0 | |
14 | ||
15 | function dobet() | |
16 | counter+=1 | |
17 | ||
18 | print(" ") | |
19 | print("Profit :"..string.format("%.8f",profit)) | |
20 | print(" ") | |
21 | print("Bet Amount :"..string.format("%.8f",nextbet)) | |
22 | print("Current Balance : "..string.format("%.8f",balance)) | |
23 | print(" === Dicebender === ") | |
24 | ||
25 | if counter == 25 then | |
26 | ||
27 | print(" ") | |
28 | print("Profit :"..string.format("%.8f",profit)) | |
29 | print(" ") | |
30 | print("Current Balance : "..string.format("%.8f",balance)) | |
31 | print(" ") | |
32 | print(" === https://t.me/UnitedDice === ") | |
33 | counter=0 | |
34 | ||
35 | end | |
36 | ||
37 | if balance>target then | |
38 | stop() | |
39 | print("=======================") | |
40 | print("==== winner winner chicken dinner ====") | |
41 | print("=======================") | |
42 | print("Total Profit: "..string.format("%.8f",profit)) | |
43 | end | |
44 | ||
45 | if win then | |
46 | ||
47 | nextbet=previousbet/2 | |
48 | ||
49 | if nextbet < basebet then | |
50 | nextbet=basebet | |
51 | end | |
52 | ||
53 | end | |
54 | ||
55 | if !win then | |
56 | ||
57 | nextbet=previousbet*1.6 | |
58 | ||
59 | end | |
60 | ||
61 | end |