Advertisement
coinwalk

so crazy you can carve it

Aug 27th, 2020
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. basebet = 0.01
  2. nextbet = basebet
  3. bethigh = false
  4. chance = 49.95
  5. james = (balance-(basebet*2))
  6. more = balance
  7. fim = 0
  8. dim = 0
  9. rim = 0
  10. target = 100
  11. function dobet()
  12. if !win then
  13. rim+=1
  14. else
  15. rim = 0
  16. end
  17. if (rim==4) then
  18. nextbet = previousbet*2
  19. rim = 0
  20. end
  21. if balance>james and win then
  22. nextbet = previousbet*2
  23. end
  24. if balance>more and win then
  25. nextbet = basebet
  26. james = (balance-(basebet*2))
  27. more = balance
  28. end
  29. if balance>target then
  30. stop()
  31. end
  32. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement