Advertisement
coinwalk

cool

Aug 9th, 2020
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. fraction = 10
  2. basebet = balance/fraction
  3. nextbet = basebet
  4. bethigh = false
  5. chance = 24
  6. target = 5000
  7. james = balance
  8. zim = 0
  9. zye = 0
  10. lye = 0
  11. fim = 0
  12. resetstats()
  13. function dobet()
  14. if win then
  15. fim = 0
  16. else
  17. fim+=1
  18. end
  19. if (fim==8) then
  20. nextbet = previousbet*2
  21. end
  22. if (nextbet==null) then
  23. nextbet = previousbet
  24. end
  25. if balance>james*1.2 and win then
  26. nextbet = basebet
  27. james = balance
  28. fim = 0
  29. end
  30. if nextbet<= basebet then
  31. nextbet = basebet
  32. end
  33.  
  34. if balance>target then
  35. stop()
  36. end
  37. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement