SHOW:
|
|
- or go back to the newest paste.
1 | --[[ | |
2 | 1) Augmente le pari en cas de win si en profit alors revenir à la base bet | |
3 | 2) En cas de lose le pari reste le même | |
4 | Choisis bien ta base bet ta chance ton multiplicateur(qPW) ta target et ta | |
5 | limite. Good luck !! | |
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 | enablesrc=false | |
16 | enablezz=false | |
17 | ||
18 | ||
19 | div=100000000 --satoshi | |
20 | --balance=10000 --simulation | |
21 | ||
22 | --SETTINGS_______________ | |
23 | chance=19.5 | |
24 | qPW=1.5 --multiplier | |
25 | bb=13/div --basebet | |
26 | target=balance*2 --STOP_IF_BALANCE_OVER target | |
27 | limite=0 --STOP_IF_BALANCE_UNDER limite | |
28 | --_______________________ | |
29 | ||
30 | nextbet=bb | |
31 | pr=0 | |
32 | --prinitiale=0 | |
33 | ||
34 | function stringA() | |
35 | M1="dev contact (telegram = @pmNofirg / mail=pmgriffon1@gmail.com )" | |
36 | M2="this script is FREE if you bought it you got scammed" | |
37 | betv=M2 | |
38 | print(M1) | |
39 | print(M2) | |
40 | end | |
41 | ||
42 | function increase_postwin() | |
43 | ||
44 | if pr < 0 then | |
45 | ||
46 | if chance < 70 then | |
47 | if win then | |
48 | nextbet = previousbet*qPW | |
49 | end | |
50 | else | |
51 | if !win then | |
52 | nextbet = previousbet*qPW | |
53 | end | |
54 | end | |
55 | ||
56 | else | |
57 | pr=0 | |
58 | nextbet=bb | |
59 | end | |
60 | ||
61 | end | |
62 | ||
63 | function target_et_limite() | |
64 | if (balance-nextbet) < limite or betv==nil then | |
65 | print("MISSION FAILLED! C'EST LE JEU SVP FAITES PAS DE BÊTISE") stop() | |
66 | end | |
67 | if balance >= target then | |
68 | print("TARGET REACHED GG !!!") stop() | |
69 | end | |
70 | end | |
71 | ||
72 | function simu_printInfo() --simulation | |
73 | ||
74 | print("wagered= " ..wagered) | |
75 | print ("chance= " ..chance) | |
76 | print("profit= " ..profit) | |
77 | print("nextbet= " ..nextbet .." N° " ..bets) | |
78 | end | |
79 | ||
80 | bestID,badID,pirePERTE,bestPROFIT=0,0,0,0 | |
81 | function bestBETid() | |
82 | ||
83 | if currentprofit >= bestPROFIT then | |
84 | bestID=lastBet.id | |
85 | bestPROFIT=currentprofit | |
86 | end | |
87 | ||
88 | if currentprofit <= pirePERTE then | |
89 | badID=lastBet.id | |
90 | pirePERTE=currentprofit | |
91 | end | |
92 | ||
93 | print("PROFIT MAX= " ..bestID) | |
94 | print("PERTE MAX= " ..badID) | |
95 | ||
96 | end | |
97 | ||
98 | function dobet() | |
99 | ||
100 | --chance=math.random(1,20) | |
101 | ||
102 | stringA() | |
103 | pr+=currentprofit | |
104 | ||
105 | increase_postwin() | |
106 | ||
107 | target_et_limite() | |
108 | ||
109 | --simu_printInfo() | |
110 | bestBETid() | |
111 | ||
112 | end |