SHOW:
|
|
- or go back to the newest paste.
1 | --https://bit-exo.com/?ref=pierresert1 | |
2 | ||
3 | --https://www.bitsler.com/?ref=pierresert1 | |
4 | ||
5 | --https://bitvest.io?r=100548 | |
6 | ||
7 | ||
8 | enablezz=false | |
9 | enablesrc=false | |
10 | perte=0 | |
11 | ||
12 | div=100000000 | |
13 | ||
14 | --balance=10000 | |
15 | --SETTING-------------- | |
16 | chance=90 | |
17 | bb=10/div | |
18 | target=3 | |
19 | limite=-1000 | |
20 | --currency="LTC" | |
21 | ----------------------- | |
22 | ||
23 | ||
24 | function stringA() | |
25 | M1="dev contact (telegram = @pmNofirg / mail=pmgriffon1@gmail.com )" | |
26 | M2="this script is FREE if you bought it you got scammed" | |
27 | betv=M2 | |
28 | print(M1) | |
29 | print(M2) | |
30 | end | |
31 | ||
32 | function target_et_limite() | |
33 | if (balance-nextbet) < limite or betv==nil then | |
34 | print("MISSION FAILLED! C'EST LE JEU SVP FAITES PAS DE BÊTISE") stop() | |
35 | end | |
36 | if balance >= target then | |
37 | print("TARGET REACHED GG !!!") stop() | |
38 | end | |
39 | end | |
40 | ||
41 | function simu_printInfo() | |
42 | ||
43 | print("wagered= " ..wagered) | |
44 | print("profit= " ..profit) | |
45 | print("PERF= " ..(wagered/profit)*100 .."%") | |
46 | print ("chance= " ..chance) | |
47 | print("nextbet= " ..nextbet .." N° " ..bets) | |
48 | end | |
49 | ||
50 | bestID,badID,pirePERTE,bestPROFIT=0,0,0,0 | |
51 | function bestBETid() | |
52 | ||
53 | if currentprofit >= bestPROFIT then | |
54 | bestID=lastBet.id | |
55 | bestPROFIT=currentprofit | |
56 | end | |
57 | ||
58 | if currentprofit <= pirePERTE then | |
59 | badID=lastBet.id | |
60 | pirePERTE=currentprofit | |
61 | end | |
62 | ||
63 | print("PROFIT MAX= " ..bestID) | |
64 | print("PERTE MAX= " ..badID) | |
65 | ||
66 | end | |
67 | ||
68 | ||
69 | nextbet=bb | |
70 | ||
71 | function dobet() | |
72 | ||
73 | stringA() | |
74 | perte +=currentprofit | |
75 | ||
76 | if wins%1==0 and win then | |
77 | ||
78 | if perte > 0 then | |
79 | perte=0 | |
80 | nextbet=bb | |
81 | else | |
82 | nextbet = previousbet*1.08 | |
83 | end | |
84 | ||
85 | end | |
86 | ||
87 | bestBETid() | |
88 | target_et_limite() | |
89 | --simu_printInfo() | |
90 | ||
91 | end |