Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- chance = 95
- chancemax = 98 -- max possible chance
- basebet = 0.00000001
- bethigh = true
- losecount = 0
- nextbet = basebet
- function dobet()
- if (win) then
- chance = 95
- nextbet = basebet
- losecount = 0
- end
- if (not win) then
- losecount = losecount + 1
- if (losecount > 1) then
- nextbet = previousbet*2
- chance = (1/(((nextbet+(nextbet-basebet))/nextbet)))*100
- if chance < 49.5 then
- chance = 49.5
- end
- if chance > chancemax then
- chance = chancemax
- end
- bethigh = not bethigh
- --print ("LOSE")
- --print(nextbet)
- --print(chance)
- --print(profit)
- --print(bets)
- else
- nextbet = previousbet*2
- chance = (1/(((basebet+nextbet))/nextbet))*100
- if chance < 49.5 then
- chance = 49.5
- end
- if chance > chancemax then
- chance = chancemax
- end
- bethigh = not bethigh
- --print ("LOSE")
- --print(nextbet)
- --print(chance)
- --print(profit)
- --print(bets)
- end
- if nextbet < basebet then nextbet = basebet end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement