Advertisement
coinwalk

lol this is good 5x

Jan 31st, 2020
297
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1. do49h = 0
  2. do49l = 0
  3. do33h = 0
  4. do33l = 0
  5. do25h = 0
  6. do25l = 0
  7. do15h = 0
  8. do15l = 0
  9. do90h = 0
  10. do90l = 0
  11. base = 0.01
  12. i = balance*0.995
  13. k = 800000
  14. multi = 1
  15. count = 0
  16. losecount = 0
  17. target = balance*5
  18. wincount = 0
  19. nextbet = base
  20. chance = 49
  21.  
  22. function dobet()
  23. if lastBet.Roll > 90 then
  24. do90h+=1
  25. do90l=0
  26. end
  27.  
  28. if lastBet.Roll < 10 then
  29. do90l+=1
  30. do90h=0
  31. end
  32. if lastBet.Roll > 10 and lastBet.Roll<90 then
  33. do90h=0
  34. do90l=0
  35. end
  36.  
  37. if win then
  38. nextbet = base
  39. chance = 65
  40. multi = 1
  41. wincount+=1
  42. else
  43. nextbet = previousbet*multi
  44. losecount+=1
  45. end
  46. if wincount == 33 then
  47. wincount = 0
  48. resetseed()
  49. end
  50. if do90h ==5 or do90l ==5 then
  51. count+=1
  52. end
  53.  
  54. if do90h >= math.random(3,5) and previousbet == 0.01 then
  55. bethigh=false
  56. do90h=0
  57. do90l=0
  58. chance = math.random(8800,9500)/100
  59. nextbet = math.random(35,65)/100*balance
  60. end
  61. if do90l >= math.random(3,5) and previousbet == 0.01 then
  62. bethigh=true
  63. do90h=0
  64. do90l=0
  65. chance = math.random(8800,9500)/100
  66. nextbet = math.random(35,65)/100*balance
  67. end
  68. print(" ")
  69. print("count: "..count)
  70. print("do90h: "..do90h)
  71. print("do90l: "..do90l)
  72. print(" ")
  73. if balance > target then
  74. stop()
  75. end
  76. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement