Advertisement
pcservis

random newnew

Sep 12th, 2018
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.21 KB | None | 0 0
  1. minchance=0.1 --the minimum chance you want to bet at
  2. -- higher than 0.01 for most sites
  3. maxchance=8 -- the maximum chance you want to bet at
  4. -- lower than 98 for most sites
  5. base = 0.00000010
  6. prebet = 0.0000001
  7. nextbet = prebet
  8. enablezz = true
  9. enablesrc = true
  10. losecount = 0
  11. betcount = 0
  12. investtarget = .0
  13. startbalance = balance
  14. investprofit = 0
  15.  
  16.  
  17. function dobet()
  18.  
  19. chance = math.random(minchance*100.0, maxchance*100.0)/100.0
  20. investprofit += currentprofit
  21. print("Total Bets/Current Lose Streak/Bet Size/Balance")
  22. print(betcount)
  23. print(losecount)
  24. print(nextbet)
  25. print(balance)
  26. if win then
  27. nextbet = prebet
  28. losecount = 0
  29. betcount += 1
  30. if (investprofit > investtarget) then
  31. invest(balance - startbalance)
  32. startbalance = balance
  33. end
  34. else
  35. losecount += 1
  36. betcount += 1
  37. nextbet = prebet
  38. end
  39. if (losecount >2) then
  40. minchance=0.1 --the minimum chance you want to bet at
  41. -- higher than 0.01 for most sites
  42. maxchance=1 -- the maximum chance you want to bet at
  43. nextbet = ((((0.02) - (profit * 600)) / 70000) + (balance * 0.00000207675))
  44. end
  45. if (losecount >51) then
  46. minchance=1 --the minimum chance you want to bet at
  47. -- higher than 0.01 for most sites
  48. maxchance=3 -- the maximum chance you want to bet at
  49. -- lower than 98 for most sites
  50.  
  51. nextbet = ((((0.02) - (profit * 1600)) / 70000) + (balance * 0.00000207675))
  52. end
  53. if (losecount > 80) then
  54. minchance=3 --the minimum chance you want to bet at
  55. -- higher than 0.01 for most sites
  56. maxchance=8 -- the maximum chance you want to bet at
  57. -- lower than 98 for most sites
  58.  
  59. nextbet = ((((0.02) - (profit * 1900)) / 70000) + (balance * 0.00000207675))
  60. end
  61. if (losecount > 130) then
  62. minchance=4 --the minimum chance you want to bet at
  63. -- higher than 0.01 for most sites
  64. maxchance=8 -- the maximum chance you want to bet at
  65. -- lower than 98 for most sites
  66.  
  67. nextbet = ((((0.02) - (profit * 2300)) / 70000) + (balance * 0.00000207675))
  68.  
  69. end
  70. if profit > 0.00000010 then
  71. resetstats()
  72. end
  73. if losecount > 3 then
  74. bethigh=math.random(0,100)%2==0
  75. end
  76.  
  77. end
  78. end
  79. end
  80. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement