Advertisement
coinwalk

new bot nice crazy

Mar 24th, 2021
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. fraction = 50000
  2. basebet = balance/fraction
  3. nextbet = basebet
  4. sill = 0
  5. winz = 0
  6. chance = 33.3
  7. oldbal = balance
  8. target = 20000
  9. sux = 0
  10. resetstats()
  11.  
  12. function dobet()
  13. if (win) then
  14. winz+=1
  15. sux = 0
  16. else
  17. sill+=1
  18. sux+=1
  19. end
  20. if (winz==2) and (sill<=3) then
  21. nextbet=previousbet*2
  22. sill=0
  23. winz=0
  24. end
  25. if (sill>3) and (winz<=1) then
  26. winz=0
  27. sill=0
  28. end
  29. if !win then
  30. nextbet = previousbet
  31. end
  32. if sux>=4 then
  33. nextbet = previousbet*2
  34. sux = 0
  35. end
  36. if (balance>=(oldbal+(basebet*4))) then
  37. nextbet = basebet
  38. sill = 0
  39. winz = 0
  40. oldbal = balance
  41. end
  42. if balance>target then
  43. stop()
  44. end
  45. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement