Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- chance = 95
- basebet = balance/8000
- nextbet = balance/8000
- bethigh = true
- losecount = 0
- function dobet()
- if (win) then
- chance = 95
- nextbet = basebet
- losecount = 0
- end
- if (!win) then
- 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
- bethigh = !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
- bethigh = !bethigh
- print ("LOSE")
- print(nextbet)
- print(chance)
- print(profit)
- print(bets)
- end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement