Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ----
- sl = balance * 0
- basebet = 0.1
- minbet = 2e-5
- nextbet = basebet
- maxbet = balance * 0.1
- chance = math.random(9800, 9900)/100
- cprofit = 0
- balhi = 0
- drop = 0
- maxdrop = 0
- dd = 0
- recov = 0
- local jeda = os.clock() + 3600
- resetseed()
- if nextbet < minbet then nextbet = minbet end
- function dobet()
- if win then bethigh = not bethigh end
- if cprofit > (basebet*2) then cprofit = 0 end
- if chance < 98 and cprofit > 0 and os.clock() > jeda then
- cprofit = 0
- jeda = os.clock() + 3600
- sleep(math.random(6000,9000))
- end
- if balance < sl then stop() end
- if balance > balhi then
- balhi = balance
- else
- balhi = balhi
- end
- drop = balhi - balance
- if drop > maxdrop then maxdrop = drop end
- dd = (maxdrop/balance)*100
- cprofit = cprofit + currentprofit
- --if wagered > 100000 then stop() end
- if (recov == 0) then
- if cprofit < -basebet and cprofit > -(basebet*20) then
- chance = math.random(4900, 5000)/100
- if !win then
- nextbet = previousbet + basebet
- else
- nextbet = basebet
- end
- end
- -- recovery ON
- if cprofit < -(basebet*20) then
- recov = 1
- nextbet = minbet
- end
- if cprofit >= basebet then
- chance = math.random(9800, 9900)/100
- nextbet = basebet
- end
- else
- chance = math.random(2000,3300)/100
- if win then
- if previousbet > basebet then
- nextbet = minbet
- else
- nextbet = previousbet
- end
- else
- nextbet = previousbet * (1+(chance/50))
- end
- if nextbet > maxbet then
- nextbet = math.abs(cprofit)/((99/chance)-1)
- end
- if cprofit > (basebet * 10) then
- resetseed()
- nextbet = basebet
- chance = math.random(9800, 9900)/100
- recov = 0
- end
- -- cutlose 10 times back to c98
- if previousbet > (basebet * 50) then
- recov = 0
- nextbet = basebet
- chance = 98
- end
- end
- if chance > 97 then chance = math.random(9800, 9900)/100 end
- if chance > 44 and chance < 98 then chance = math.random(4900, 5000)/100 end
- if chance > 19 and chance < 34 then chance = math.random(2000, 3300)/100 end
- if nextbet < minbet then nextbet = minbet end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement