Advertisement
coinwalk

sick

Nov 19th, 2019
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. chance = 49.95
  2. nextbet = balance/2592
  3. base = balance/2592
  4. bethigh = true
  5. target = 10000
  6. maxline = balance/81
  7. multi = 2
  8. function dobet()
  9.  
  10. if win then
  11. if (bethigh==true) then bethigh=false else bethigh=true end
  12. nextbet = balance/2592
  13. else
  14. nextbet = previousbet * multi
  15. end
  16. if (previousbet > (balance/81)) then
  17. if win then
  18. nextbet = balance/2592
  19. else
  20. nextbet = previousbet * 3
  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