Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- resetstats()
- startbalance = balance
- m1 = 1.1
- m2 = 1.65
- roundprofit = 0
- n = 0.01
- base = n
- nextbet = base
- chance1 = math.random(5,9)
- chance2 = math.random(19,20)
- l = 0
- stop_profit = balance + 100.01
- bethigh = true
- chance = chance1
- function dobet()
- if balance > stop_profit then
- stop()
- end
- l += 1
- r = math.random(100)
- chance1 = math.random(5,9)
- chance2 = math.random(19,20)
- if win then
- l = 0
- s = 0
- base = n
- nextbet = base
- chance = chance1
- bethigh = !bethigh
- end
- if (l == 0) then
- chance = chance1
- base = n
- nextbet = base
- else
- nextbet = previousbet * m1
- chance = chance1
- end
- if (l == 20) then
- nextbet = previousbet * m2
- chance = chance2
- end
- if (l > 20) then
- chance2 = math.random(19,20)
- chance = chance2
- nextbet = previousbet * m2
- if (r > 50) then
- bethigh = true
- else
- bethigh = false
- end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement