Advertisement
coinwalk

yeah++++++++

Oct 7th, 2020
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. fraction = 99999
  2. basebet = balance/fraction
  3. chance = 49.5
  4. nextbet = basebet
  5. bethigh = true
  6. james = balance
  7. target = 50000
  8. bot = 0
  9. free = 0
  10. box = 0
  11. zix = 0
  12. resetstats()
  13. function dobet()
  14. basebet = balance/fraction
  15. if (win) then
  16. nextbet = previousbet*1.5
  17. bot = 0
  18. box+=1
  19. else
  20. bot+=1
  21. end
  22. if (bot==2) then
  23. nextbet = previousbet*2
  24. resetseed()
  25. bot = 0
  26. end
  27. if (box==2) then
  28. zix+=1
  29. box = 0
  30. end
  31. if nextbet>=balance/1024 then
  32. nextbet = previousbet*2
  33. end
  34. if (balance>(james+(basebet*10))) or (balance>=james) and (zix>=1) then
  35. nextbet = basebet
  36. bot = 0
  37. free = 0
  38. box = 0
  39. zix = 0
  40. james = balance
  41. end
  42. if balance>target then
  43. stop()
  44. end
  45. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement