Advertisement
coinwalk

crazybot

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