View difference between Paste ID: XSa5E4DM and i23cy2ty
SHOW: | | - or go back to the newest paste.
1-
--[[Le principe du script :
1+
enablezz  = false
2
enablesrc = false
3-
--1) Dans un premier temps la chance diminue progressivement de façon à rembourser les pertes sans augmenter le pari.
3+
perte     = 0
4
payout    = 1
5-
--2) Arriver à la chance minimum la chance augmente progressivement et le montant du pari augmente de façon a rembourser les pertes en cas de gain.
5+
sensM     = true
6
WageredB  = 0
7-
--3) Si gain alors on retourne au pari et à la chance de base]]--
7+
ProfitB   = 0
8
9-
--https://bit-exo.com/?ref=pierresert1
9+
10-
 
10+
11-
--https://www.bitsler.com/?ref=pierresert1
11+
12-
 
12+
13-
--https://bitvest.io?r=100548
13+
14
mdBourrin = false  --false=safe true = risky
15-
--https://www.bitdice.me/?r=29766
15+
casino    = 1 --% edge house
16
chance    = 20 --base chance
17-
enablezz=false
17+
chanceMin = 9.9 --chance minimum
18-
enablesrc=false
18+
bb        = balance/100000 -- base bet (1/div = 1 satoshi)
19-
perte=0
19+
target    = balance*2 --STOP_IF_BALANCE_OVER target
20-
payout=1
20+
limite    = 0 --STOP_IF_BALANCE_UNDER limite
21-
sensM=true
21+
22-
WageredB = 0
22+
23-
ProfitB = 0
23+
resetseed()
24
counter = 0
25
chanceDB = chance
26
bbDB = bb
27
28
function target_et_limite()
29
    if (balance-nextbet) < limite or betv==nil then
30
        nextbet=balance-limite
31-
casino = 1 --% edge house
31+
        print("MISSION FAILLED! C'EST LE JEU SVP FAITES PAS DE BÊTISE") stop()
32-
chance = 9.9 --base chance
32+
    end
33-
chanceMin = 0.8 --chance minimum
33+
    if balance >= target then
34-
bb = 15/div -- base bet (1/div = 1 satoshi)
34+
        print("TARGET REACHED GG !!!") stop()
35-
target=balance*2 --STOP_IF_BALANCE_OVER target
35+
    end
36-
limite=0 --STOP_IF_BALANCE_UNDER limite
36+
37
38
39
function simu_printInfo()
40
41
    print("wagered= " ..wagered)
42
    print("profit= " ..profit)
43-
	if (balance-nextbet) < limite or betv==nil then
43+
    print("PERF= " ..(wagered/profit)*100 .."%")
44-
		nextbet=balance-limite
44+
    print ("chance= " ..chance)
45-
		print("MISSION FAILLED! C'EST LE JEU SVP FAITES PAS DE BÊTISE") stop()
45+
    print("nextbet= " ..nextbet .." N° " ..bets)
46-
	end
46+
47-
	if balance >= target then
47+
48-
		print("TARGET REACHED GG !!!") stop()
48+
function rstseed()
49-
	end
49+
    if counter == 500 then
50
        resetseed()
51
        counter = 0
52-
	function stringA()
52+
    else
53-
		M1="dev contact (telegram = @pmNofirg / mail=pmgriffon1@gmail.com )"
53+
        counter+=1
54-
		M2="this script is FREE if you bought it you got scammed"
54+
    end
55-
		betv=M2
55+
56-
		print(M1)
56+
57-
		print(M2)
57+
58-
	end
58+
59
function dobet()
60
    rstseed()
61
    WageredB +=lastBet.amount
62-
	print("wagered= " ..wagered)
62+
    ProfitB +=currentprofit
63-
	print("profit= " ..profit)
63+
    perte +=currentprofit
64-
	print("PERF= " ..(wagered/profit)*100 .."%")
64+
    
65-
	print ("chance= " ..chance)
65+
    if win then
66-
	print("nextbet= " ..nextbet .." N° " ..bets)
66+
        bethigh=math.random(0,100)%2==0
67
        chance = chanceDB
68
        payout = 1
69-
bestID,badID,pirePERTE,bestPROFIT=0,0,0,0
69+
    else
70-
function bestBETid()
70+
        if sensM==true then
71
            payout +=1
72-
	if currentprofit >= bestPROFIT then
72+
        else
73-
		bestID=lastBet.id
73+
            payout -= 1
74-
		bestPROFIT=currentprofit
74+
        end
75-
	end
75+
    
76-
	
76+
    end
77-
	if currentprofit <= pirePERTE then
77+
    
78-
		badID=lastBet.id
78+
    
79-
		pirePERTE=currentprofit
79+
    --[[if bets%50==0 then
80-
	end
80+
        if perte < 0 then
81-
	
81+
            nextbet = previousbet*2
82-
	print("PROFIT MAX= " ..bestID)
82+
        end
83-
	print("PERTE MAX= " ..badID)
83+
    end--]]
84-
	
84+
    
85
    chance = (100-casino)/payout
86
    
87
    if chance >= chanceDB then
88
        chance = chanceDB
89
        sensM=true
90
    end
91
    if chance <= chanceMin then
92-
	stringA()
92+
        chance = chanceMin
93-
	WageredB +=lastBet.amount
93+
        sensM=false
94-
	ProfitB +=currentprofit
94+
    end
95-
	perte +=currentprofit
95+
    
96-
	
96+
    
97-
	if win then
97+
    payout = (100-casino)/chance
98-
		bethigh=math.random(0,100)%2==0
98+
    
99-
		chance = chanceDB
99+
    if mdBourrin == false then
100-
		payout = 1
100+
        nextbet = (-perte+bb)/(payout-1)
101-
	else
101+
    else
102-
		if sensM==true then
102+
        nextbet = (WageredB-ProfitB+bb)/(payout-1)
103-
			payout +=1
103+
    end
104-
		else
104+
    
105-
			payout -= 1
105+
    if nextbet <= bb then
106-
		end
106+
        nextbet = bb
107-
	
107+
    end
108-
	end
108+
    
109-
	
109+
    if perte >= 0 then
110-
	
110+
        perte   = 0
111-
	--[[if bets%50==0 then
111+
        bb      = balance/100000 
112-
		if perte < 0 then
112+
        nextbet = bb
113-
			nextbet = previousbet*2
113+
    end 
114-
		end
114+
115-
	end--]]
115+
    --target_et_limite()
116-
	
116+
    simu_printInfo() --simu
117-
	chance = (100-casino)/payout
117+
118-
	
118+
119-
	if chance >= chanceDB then
119+