coinwalk

cracked it i think

Apr 25th, 2020
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. chance = 49.95
  2. bethigh = true
  3. target = 1
  4. basebet = balance/10000
  5. nextbet = basebet
  6. more = balance
  7. read = balance
  8. los = 0
  9. won = 0
  10. function dobet()
  11. if (win) then
  12. won+=1
  13. else
  14. los+=1
  15. end
  16. if (won == 1) then
  17. nextbet = previousbet*1.2
  18. won = 0
  19. end
  20. if (los == 1) then
  21. nextbet = previousbet*1.2
  22. los = 0
  23. end
  24. if balance > more and win then
  25. nextbet = balance/10000
  26. more = balance
  27. end
  28. if balance > target then
  29. stop()
  30. end
  31. end
Add Comment
Please, Sign In to add comment