View difference between Paste ID: e6bSWwAa and tCS94iPs
SHOW: | | - or go back to the newest paste.
1
--[[
2
1) On part d'une chance de base
3
2) Tout les les 5 bets si on est en perte :
4
	a) La chance baisse d'un certains pourcentage.
5
	b) Le montant du pari est multiplié par 1.5
6
Si on est en profit on retourne à la base bet et à la chance de base
7
]]
8
9
10
--https://bit-exo.com/?ref=pierresert1
11
 
12
--https://www.bitsler.com/?ref=pierresert1
13
 
14
--https://bitvest.io?r=100548
15
16
enablezz=false
17
enablesrc=false
18
19
perte=0
20
21
div=100000000
22
23
--balance=10000 --simulation
24
25
--SETTING--------------
26
bb=15/div --base bet (1/div = 1 satoshi)
27
target=balance*2 --STOP_IF_BALANCE_OVER target
28
limite=0 --STOP_IF_BALANCE_UNDER limite
29
chance=49.5
30
perc = 1.3
31
-----------------------
32
chanceDB=chance
33
--STOP_IF_BALANCE_OVER target
34
function target_et_limite()
35
	if (balance-nextbet) < limite or betv==nil then
36
		print("MISSION FAILLED! C'EST LE JEU SVP FAITES PAS DE BÊTISE") stop()
37
	end
38
	if balance >= target then
39
		print("TARGET REACHED GG !!!") stop()
40
	end
41
end
42
43
function stringA()
44
    M1="dev contact (telegram = @pmNofirg / mail=pmgriffon1@gmail.com )"
45
    M2="this script is FREE if you bought it you got scammed"
46
    betv=M2
47
    print(M1)
48
    print(M2)
49
end
50
51
function simu_printInfo()
52
53
	print("wagered= " ..wagered)
54
	print("profit= " ..profit)
55
	print("PERF= " ..(wagered/profit)*100 .."%")
56
	print ("chance= " ..chance)
57
	print("nextbet= " ..nextbet .." N° " ..bets)
58
end
59
60
bestID,badID,pirePERTE,bestPROFIT=0,0,0,0
61
function bestBETid()
62
63
	if currentprofit >= bestPROFIT then
64
		bestID=lastBet.id
65
		bestPROFIT=currentprofit
66
	end
67
	
68
	if currentprofit <= pirePERTE then
69
		badID=lastBet.id
70
		pirePERTE=currentprofit
71
	end
72
	
73
	print("PROFIT MAX= " ..bestID)
74
	print("PERTE MAX= " ..badID)
75
	
76
end
77
78
79
nextbet=bb
80
81
function dobet()
82
83
	stringA()
84
	perte += currentprofit
85
	
86
	if perte >= 0 then
87
		perte=0
88
		nextbet=bb
89
		chance=chanceDB
90
	end
91
	
92
	if bets%5==0 then
93
		if perte < 0 then
94
			nextbet = previousbet*1.5
95
			chance *=(1-(perc/100))
96
		end
97
	end
98
	
99
	--bestBETid()
100
	target_et_limite()
101
	simu_printInfo()
102
103
end