Advertisement
coinwalk

there test this elele

Sep 1st, 2019
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. chance = 49.95
  2. nextbet = balance/25000
  3. basebet = balance/25000
  4. bethigh=true
  5. maxline = balance/24000
  6. target = 300000
  7. multi = 2
  8. function dobet()
  9.  
  10. if win then
  11. bethigh=true
  12. else
  13. nextbet = previousbet * multi
  14. end
  15. if previousbet > maxline then
  16. if win then
  17. nextbet = basebet
  18. resetbuiltin()
  19. else
  20. nextbet = previousbet * multi
  21. end
  22. end
  23. if balance > target then
  24. stop()
  25. end
  26. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement