Advertisement
coinwalk

jonocan1

Mar 13th, 2020
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. bethigh = true
  2. good = 15000
  3. prebet = balance/102400
  4. nextbet = prebet
  5. min = 49.95
  6. chance = min
  7. max = 50.5
  8. function dobet()
  9. if win then
  10. nextbet = prebet
  11. bethigh = true
  12. else
  13. nextbet = previousbet*2.5
  14. end
  15. if lastBet.Roll > min then
  16. bethigh = true
  17. end
  18. if lastBet.Roll < max then
  19. bethigh = false
  20. end
  21. if balance > good then
  22. stop()
  23. end
  24. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement