Advertisement
coinwalk

manual crazybot

Mar 18th, 2021
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. fraction = 800
  2. basebet = balance/fraction
  3. base = balance/fraction
  4. chance = 49.95
  5. nextbet = basebet
  6. bethigh = false
  7. oldbal = balance
  8. target = 100000
  9. old = balance
  10. older = balance
  11. sic = balance
  12. wage = 0
  13. zim = 0
  14.  
  15. function dobet()
  16.  
  17. if (balance<old) then
  18. bim+=1
  19. end
  20. if (balance<=(older-(basebet*4))) then
  21. zim+=1
  22. end
  23. if (bim==1) then
  24. nextbet = previousbet*2
  25. end
  26. if zim>=4 then
  27. nextbet = previousbet*2
  28. basebet = nextbet
  29. oldbal = balance
  30. older = balance
  31. zim = 0
  32. end
  33.  
  34. if (balance>=(oldbal+(basebet*2))) then
  35. nextbet = previousbet*2
  36. bim = 0
  37. zim = 0
  38. oldbal = 200000000000
  39. end
  40. if (balance>=(sic+(base*8))) then
  41. nextbet = balance/fraction
  42. basebet = balance/fraction
  43. sic = balance
  44. bim = 0
  45. zim = 0
  46. base = balance/fraction
  47. oldbal = balance
  48. old = balance
  49. older = balance
  50. end
  51. if (balance>=target) then
  52. stop()
  53. end
  54. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement