Advertisement
coinwalk

eureka we have success simplified

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