Advertisement
coinwalk

change chance

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