Advertisement
coinwalk

lose lose win

Sep 12th, 2019
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. chance = 19.8
  2. base = balance/50000
  3. prebet = balance/50000
  4. nextbet = prebet
  5. enablezz = true
  6. enablesrc = true
  7. losecount = 0
  8. betcount = 0
  9.  
  10. startbalance = balance
  11. investprofit = 0
  12.  
  13. function dobet()
  14. investprofit += currentprofit
  15. print("Total Bets/Current Lose Streak/Bet Size/Balance")
  16. print(betcount)
  17. print(losecount)
  18. print(nextbet)
  19. print(balance)
  20. if win then
  21. nextbet = prebet
  22. chance = 19.8
  23. losecount = 0
  24. betcount += 1
  25.  
  26.  
  27.  
  28. else
  29. losecount += 1
  30. betcount += 1
  31.  
  32. end
  33. if (losecount > 0) then
  34. nextbet = previousbet*1.4
  35. chance = 19.8
  36. bethigh=true
  37. end
  38. if (losecount > 6) then
  39. nextbet = previousbet*100
  40. chance = 95
  41. end
  42. end
  43. end
  44. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement