Advertisement
pcservis

test newone

Aug 28th, 2018
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. chance=1
  2. base = 0.00000010
  3. prebet = 0.00000005
  4. nextbet = prebet
  5. enablezz = true
  6. enablesrc = true
  7. losecount = 0
  8. betcount = 0
  9. investtarget = .0
  10. startbalance = balance
  11. investprofit = 0
  12.  
  13. function dobet()
  14.  
  15. investprofit += currentprofit
  16. print("Total Bets/Current Lose Streak/Bet Size/Balance")
  17. print(betcount)
  18. print(losecount)
  19. print(nextbet)
  20. print(balance)
  21. if win then
  22. nextbet = previousbet/3
  23. chance=chance/10
  24. losecount = 0
  25. betcount += 1
  26. if (investprofit > investtarget) then
  27. invest(balance - startbalance)
  28. startbalance = balance
  29. end
  30. else
  31. losecount += 1
  32. betcount += 1
  33.  
  34. end
  35. if (losecount >10) then
  36. nextbet = previousbet*1.05
  37. chance=chance*1.05
  38.  
  39. end
  40.  
  41.  
  42. if (losecount >60) then
  43. nextbet = previousbet*1.08
  44.  
  45. end
  46. if (losecount >101) then
  47.  
  48. nextbet = previousbet*1.10
  49. end
  50. if profit > 0.000000010 then
  51. resetstats()
  52. chance=1
  53. nextbet = prebet
  54. end
  55.  
  56. end
  57. end
  58. end
  59. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement