SHOW:
|
|
- or go back to the newest paste.
1 | --[[ | |
2 | -1)C'est une d'alembert | |
3 | -2)Une incrémentation en cas de lose / win | |
4 | -3) Un reset to base if profit (var=profit_target) | |
5 | A vous de choisir vos incrementation votre chance et vostre reset if profit enjoy ! | |
6 | ]] | |
7 | ||
8 | ||
9 | --https://bit-exo.com/?ref=pierresert1 | |
10 | ||
11 | --https://www.bitsler.com/?ref=pierresert1 | |
12 | ||
13 | --https://bitvest.io?r=100548 | |
14 | ||
15 | --https://www.bitdice.me/?r=29766 | |
16 | ||
17 | enablezz=false | |
18 | enablesrc=false | |
19 | ||
20 | perte=0 | |
21 | ||
22 | div=100000000 | |
23 | ||
24 | --balance=10000 --simu | |
25 | ||
26 | --SETTING-------------- | |
27 | chance = 49.5 | |
28 | bb = 1/div -- base bet 1/div = 1 satoshi | |
29 | addW = -bb -- incrémente en cas de win | |
30 | addL = bb --incremente en cas de lose | |
31 | profit_target = bb -- choisir le profit visé pour retourner à la base bet | |
32 | target=balance*2 -- stop si la balance est supérieure à target | |
33 | limite=0 --stop si la balance est inférieure à la limite | |
34 | ----------------------- | |
35 | ||
36 | ||
37 | function target_et_limite() | |
38 | if (balance-nextbet) < limite then | |
39 | print("MISSION FAILLED! C'EST LE JEU SVP FAITES PAS DE BÊTISE") stop() | |
40 | end | |
41 | if balance >= target then | |
42 | print("TARGET REACHED GG !!!") stop() | |
43 | end | |
44 | end | |
45 | ||
46 | function simu_printInfo() | |
47 | ||
48 | print("wagered= " ..wagered) | |
49 | print("profit= " ..profit) | |
50 | print("PERF= " ..(wagered/profit)*100 .."%") | |
51 | print ("chance= " ..chance) | |
52 | print("nextbet= " ..nextbet .." N° " ..bets) | |
53 | end | |
54 | ||
55 | bestID,badID,pirePERTE,bestPROFIT=0,0,0,0 | |
56 | function bestBETid() | |
57 | ||
58 | if currentprofit >= bestPROFIT then | |
59 | bestID=lastBet.id | |
60 | bestPROFIT=currentprofit | |
61 | end | |
62 | ||
63 | if currentprofit <= pirePERTE then | |
64 | badID=lastBet.id | |
65 | pirePERTE=currentprofit | |
66 | end | |
67 | ||
68 | print("PROFIT MAX= " ..bestID) | |
69 | print("PERTE MAX= " ..badID) | |
70 | ||
71 | end | |
72 | ||
73 | ||
74 | nextbet=bb | |
75 | ||
76 | function dobet() | |
77 | ||
78 | perte += currentprofit | |
79 | ||
80 | if perte > profit_target then | |
81 | perte = 0 | |
82 | nextbet = bb | |
83 | end | |
84 | ||
85 | if win then | |
86 | nextbet += addW | |
87 | else | |
88 | nextbet += addL | |
89 | end | |
90 | ||
91 | if nextbet <= bb then nextbet = bb end | |
92 | ||
93 | bestBETid() | |
94 | target_et_limite() | |
95 | --simu_printInfo() | |
96 | ||
97 | end |