Advertisement
coinwalk

trial

Feb 2nd, 2022
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. d = balance/3200
  2. i = balance
  3. c = d
  4. k = balance
  5. chance = 49.5
  6. bethigh = false
  7. nextbet = d
  8. snow = (d*10)
  9. target = 20
  10. resetstats()
  11.  
  12. function dobet()
  13. if ((balance<=(k-(c*3))) and (balance<i)) then
  14. nextbet = c*2
  15. c = nextbet
  16. snow = 0
  17. k = balance
  18. end
  19. if (balance>(k+(c*6))) then
  20. nextbet = c*2
  21. c = nextbet
  22. k = balance
  23. end
  24. if (balance>=(i+snow)) then
  25. nextbet = d
  26. c = d
  27. k = balance
  28. i = balance
  29. snow = (d*10)
  30. end
  31. if balance>=target then
  32. stop()
  33. end
  34. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement