Advertisement
coinwalk

haaaahaaaaha

Jul 10th, 2020
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. more = balance
  2. fraction = 10
  3. basebet = balance/fraction
  4. nextbet = 0
  5. bethigh = false
  6. loss = 0
  7. winn = 0
  8. target = balance*2
  9. chance = 49.95
  10.  
  11. function dobet()
  12. if win then
  13. winn+=1
  14. else
  15. loss+=1
  16. end
  17. if (winn>2) then
  18. nextbet = previousbet*2
  19. winn = 0
  20. end
  21. if (nextbet==nil) then
  22. nextbet = previousbet
  23. end
  24. if (loss>=2) and (winn==2) and win then
  25. nextbet = basebet
  26. loss = 0
  27. end
  28. if (balance > more) then
  29. nextbet = 0
  30. loss = 0
  31. winn = 0
  32. more = balance
  33. end
  34. if (balance >= target) then
  35. stop()
  36. ching()
  37. end
  38. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement