Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- min = 10.5
- man = 16
- max = 60
- chance = max
- base = (balance / 500) * 0.0005
- nextbet = base
- bethigh = false
- multi = 1.1191
- somu1f1 = 0
- somu2f1 = 1
- somu1f2 = 1.4
- somu2f2 = 1.02
- point1 = 10
- point2 = 20
- g = 0
- f1 = true
- profitf1 = 0
- nx1 = 1
- f1stw = 0
- f1stl = 0
- f1x = true
- f2 = false
- profitf2 = 0
- nx2 = 1
- f2st = 0
- target = balance * 2
- limit = -balance * 0.5
- limit1 = limit
- step = balance * 0.01
- step1 = step
- function dobet()
- bethigh = (math.random(100) >= 50)
- chance = math.random(min*100,man*100)/200
- if profit > step then
- step = step1 + profit
- limit = limit1 + profit
- end
- if f1 then
- if win then
- bethigh = true
- chance = max
- f1x = false
- if (f1stw >= 1) or (f1stl >= 1) then
- nextbet = base/10
- g = 0
- min = 10.5
- nx1 = 1
- f1stw = 0
- f1x = true
- else
- nx1 += somu1f1
- f1stw += 1
- nextbet = base/10
- end
- f1stl = 0
- else
- f1stw = 0
- if (f1stl >= point1) then
- nextbet = base/10
- nx2 = nx1
- f2 = true
- g = 0
- min = 10.5
- f1stl = 0
- f1stw = 0
- nx1 = 1
- f1 = false
- else
- if f1x then
- nextbet = base/10
- else
- g+=0.5
- min = 10.5
- chance = (min+g)
- nx1 += somu2f1
- f1stl += 1
- nextbet = base * (multi^nx1)
- end
- end
- end
- end
- if f2 then
- if win then
- if (f2st >= 1) then
- g = 0
- min = 10.5
- f1 = true
- f2 = false
- f1x = true
- nextbet = base/10
- nx2 = 1
- f2st = 0
- else
- g = 0
- nx2 += somu1f2
- nextbet = base * (multi^nx2)
- f2st += 1
- end
- else
- if (f2st >= 1) and (f2st < point2) then
- bethigh = false
- g+=0.19
- m = 10.5
- chance = (m-g)
- nx2 += somu2f2
- nextbet = base * (multi^nx2)
- f2st += 1
- else
- nextbet = base/10
- f2st = 0
- end
- end
- end
- profitnow = profit / (balance-profit) * 100
- nextbet = math.ceil(nextbet*10^8)/10^8
- if profit - nextbet < limit then stop() end
- print("\n\n")
- print("DICEKODE DICE SCRIPT -- Telegram @dicekode")
- print("\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n")
- print("--------------------------------------")
- print("Profit so far: "..string.format("%.2f",profitnow).."%")
- print("Stop Lose: "..string.format("%.5f",limit))
- print("Step: "..string.format("%.5f",step))
- print("--------------------------------------")
- end
Add Comment
Please, Sign In to add comment