SHOW:
|
|
- or go back to the newest paste.
1 | --[[ | |
2 | -1) NDC correspond au nombre moyen de wins pour une lose en fonction de la chance | |
3 | -2) En moyenne tout les "NDC" paris le sens est sélectionné aléatoirement. | |
4 | -3) Si on est en perte après "NDC" alors montant du pari = la perte/2 et le payout est multiplié par 1.5(la chance diminue) | |
5 | -4) Si on est en profit "NDC" = lors montant du pari = la base bet et chance = chance de base | |
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 --simulation | |
25 | --SETTING-------------- | |
26 | casino = 1 --edge house % | |
27 | chance = 98 | |
28 | chanceMin = 44 -- minimum chance | |
29 | bb = 155/div -- base bet (1/div = 1 satoshi) | |
30 | target = balance*2 --STOP_IF_BALANCE_OVER target | |
31 | limite = 0 --STOP_IF_BALANCE_UNDER limite | |
32 | ----------------------- | |
33 | ||
34 | ndc = math.floor(1/((100-chance)/100)) | |
35 | chanceDB = chance --chance de base | |
36 | payout = (100-casino)/chance | |
37 | ||
38 | function target_et_limite() | |
39 | if (balance-nextbet) < limite or betv==nil then | |
40 | print("MISSION FAILLED! C'EST LE JEU SVP FAITES PAS DE BÊTISE") stop() | |
41 | end | |
42 | if balance >= target then | |
43 | print("TARGET REACHED GG !!!") stop() | |
44 | end | |
45 | end | |
46 | ||
47 | function stringA() | |
48 | M1="dev contact (telegram = @pmNofirg / mail=pmgriffon1@gmail.com )" | |
49 | M2="this script is FREE if you bought it you got scammed" | |
50 | betv=M2 | |
51 | print(M1) | |
52 | print(M2) | |
53 | end | |
54 | ||
55 | function simu_printInfo() | |
56 | ||
57 | print("wagered= " ..wagered) | |
58 | print("profit= " ..profit) | |
59 | print("PERF= " ..(wagered/profit)*100 .."%") | |
60 | print ("chance= " ..chance) | |
61 | print("nextbet= " ..nextbet .." N° " ..bets) | |
62 | end | |
63 | ||
64 | bestID,badID,pirePERTE,bestPROFIT=0,0,0,0 | |
65 | function bestBETid() | |
66 | ||
67 | if currentprofit >= bestPROFIT then | |
68 | bestID=lastBet.id | |
69 | bestPROFIT=currentprofit | |
70 | end | |
71 | ||
72 | if currentprofit <= pirePERTE then | |
73 | badID=lastBet.id | |
74 | pirePERTE=currentprofit | |
75 | end | |
76 | ||
77 | print("PROFIT MAX= " ..bestID) | |
78 | print("PERTE MAX= " ..badID) | |
79 | ||
80 | end | |
81 | ||
82 | nextbet=bb | |
83 | ||
84 | function dobet() | |
85 | ||
86 | stringA() | |
87 | perte += currentprofit | |
88 | ||
89 | if math.random(1,ndc)==ndc then | |
90 | ||
91 | print("-----------BOUUUUUMMMMMM!!!!!!!!!!!!!!-----------") | |
92 | ||
93 | bethigh = math.random(0,100)%2==0 | |
94 | if chance == chanceMin then chance = chanceDB end | |
95 | ||
96 | nextbet = -perte/2 | |
97 | payout = (100-casino)/chance | |
98 | payout = ((payout-1)*1.5)+1 | |
99 | chance = (100-casino)/payout | |
100 | ||
101 | if chance < chanceMin then chance = chanceMin end | |
102 | ||
103 | bethigh=math.random(0,100) | |
104 | ndc = math.floor(1/((100-chance)/100)) | |
105 | ||
106 | if ndc < 2 then ndc=2 end | |
107 | ||
108 | end | |
109 | ||
110 | if perte >= 0 then | |
111 | perte *= 0.9 | |
112 | nextbet = bb | |
113 | chance = chanceDB | |
114 | bethigh=math.random(0,100) | |
115 | ndc = math.floor(1/((100-chance)/100)) | |
116 | end | |
117 | ||
118 | if nextbet < bb then | |
119 | nextbet = bb | |
120 | end | |
121 | ||
122 | bestBETid() | |
123 | target_et_limite() | |
124 | --simu_printInfo() --simulation | |
125 | ||
126 | end |