Advertisement
coinwalk

c5

Aug 23rd, 2020
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. basebet = 0.00000001
  2. nextbet = basebet
  3. bethigh = false
  4. chance = 5
  5. james = balance
  6. fim = 0
  7. target= 0.0002
  8. function dobet()
  9. if (!win) then
  10. fim+=1
  11. end
  12. if (fim==9) then
  13. nextbet = previousbet*2
  14. fim = 0
  15. end
  16. if (balance>james) and (win) then
  17. nextbet = basebet
  18. james = balance
  19. fim = 0
  20. end
  21. if balance>target then
  22. stop()
  23. end
  24. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement