Advertisement
coinwalk

trial

Feb 19th, 2020
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. bethigh = false
  2. good = balance*3
  3. min = 49.95
  4. max = 49.9
  5. chance = max
  6. lol = balance*2
  7. base = balance/3
  8. nextbet = base
  9. box = 0
  10. bit = 0
  11. bid = 0
  12. function dobet()
  13. if win then
  14. bit+=1
  15. else
  16. box+=1
  17. bid+=1
  18. end
  19. if (box > 0) and (chance==max) then
  20. nextbet = balance/1200
  21. chance = min
  22. box = 0
  23. end
  24. if (bid > 1) and (chance==min) then
  25. nextbet = previousbet*2
  26. bid = 0
  27. end
  28. if balance > lol and win then
  29. nextbet = base
  30. chance = max
  31. lol = balance*2
  32. resetstats()
  33. end
  34. if balance > good then
  35. stop()
  36. end
  37. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement