Advertisement
coinwalk

doge fishy

Jul 8th, 2020
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. more = balance
  2. fraction = 100000
  3. basebet = balance/fraction
  4. nextbet = basebet
  5. loss = 0
  6. winn = 0
  7. target = balance*1000
  8. chance = 5
  9. function dobet()
  10. if win then
  11. winn+=1
  12. else
  13. loss+=1
  14. end
  15. if (winn==1) then
  16. bethigh = !bethigh
  17. nextbet = basebet
  18. winn = 0
  19. end
  20. if (loss==1) then
  21. nextbet = previousbet*1.0698
  22. loss = 0
  23. end
  24. if (balance > target) then
  25. stop()
  26. end
  27. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement