Advertisement
coinwalk

my 512 to 500k

Sep 2nd, 2020
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. fraction = 51200
  2. basebet = balance/fraction
  3. nextbet = basebet
  4. bethigh = false
  5. chance = 24
  6. target = 500000
  7. james = balance
  8. botbuddy = 0
  9. zonk = 0
  10. biz = 0
  11. yo = 0
  12. him = balance
  13. resetstats()
  14. function dobet()
  15. if !win then
  16. botbuddy+=1
  17. biz+=1
  18. end
  19. if (botbuddy==8) then
  20. nextbet = previousbet*2
  21. botbuddy = 0
  22. yo+=1
  23. end
  24. if (yo>=2) and (zonk==0) then
  25. nextbet = previousbet
  26. end
  27. if (biz==22) then
  28. nextbet = previousbet*2
  29. zonk+=1
  30. biz = 0
  31. end
  32. if (zonk==1) and (biz==8) then
  33. nextbet = previousbet*2
  34. biz = 0
  35. end
  36. if (nextbet==nil) then
  37. nextbet = previousbet
  38. end
  39.  
  40. if balance>james then
  41. nextbet = balance/fraction
  42. botbuddy = 0
  43. yo = 0
  44. zonk = 0
  45. biz = 0
  46. james = balance
  47. end
  48. if balance>target then
  49. stop()
  50. end
  51. end
  52.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement