Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- minimalbet = 0.00000001
- min = 10
- max = 75
- min2 = 35.5
- max2 = 60.6
- min3 = 2
- max3 = 7
- chance = math.random(min*100, max*100)/100
- bethigh = false
- basebet = balance / 1000000
- nextbet = basebet
- StopOnProfit = balance * 1.5
- round = 0
- function dobet()
- round = round + currentprofit
- if (round >= 0) then
- round = 0
- end
- if (math.abs(round) >= basebet * 1000) then
- stop()
- end
- if (balance > StopOnProfit) then
- stop();
- end
- bethigh = math.random(2) == 1
- if (win) then
- if (currentstreak%3 == 0) then
- resetseed();
- chance = math.random(min3*100, max3*100)/100
- end
- else
- if (currentstreak%3 == 0) then
- chance = math.random(min3*100, max3*100)/100
- else
- chance = math.random(min2*100, max2*100)/100
- end
- local multi = 99 / chance
- if (multi > 10) then
- nextbet = math.abs(round) / (multi - 1) * 2
- else
- nextbet = math.abs(round) / (multi - 1) * 1
- end
- end
- if (round == 0) then
- nextbet = balance / 1000000
- chance = math.random(min*100, max*100)/100
- bethigh = not bethigh
- end
- nextbet = math.max(nextbet, basebet)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement