Advertisement
Guest User

3on3

a guest
May 29th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. base=0.0000001
  2. pre=0.00000001
  3. chance=49.95
  4. nextbet=base
  5. winc=0
  6. losec=0
  7. rp=0
  8. enablezz=true
  9. rst=0
  10. target=250000
  11.  
  12. function dobet()
  13.  
  14. rp += currentprofit
  15. tp=balance/1000
  16. wr=balance/20
  17. basep=balance/10000
  18.  
  19. if rst == 500000 then
  20. resetseed()
  21. rst = 0
  22. end
  23.  
  24. if rp < 0 then
  25. chance=49.5
  26. nextbet=base
  27. else
  28. rp=0
  29. winc=1
  30. chance=49.5
  31. nextbet=basep
  32. end
  33.  
  34. if not win then
  35. losec +=1
  36. winc =1
  37. chance=49.5
  38. nextbet=base
  39. else
  40. rst +=1
  41. chance=49.5
  42. losec =1
  43. winc +=1
  44. end
  45.  
  46. if winc == 3 then
  47. chance=45
  48. nextbet=-rp
  49. winc=0
  50. end
  51.  
  52. if losec >4 then
  53. chance=45
  54. nextbet=-rp
  55. end
  56.  
  57.  
  58. if losec >8 then
  59. chance= 49.5
  60. nextbet=base
  61. end
  62.  
  63. if losec >14 then
  64. chance= 45
  65. nextbet=-rp
  66. end
  67.  
  68.  
  69. if nextbet < base then
  70. nextbet=base
  71. end
  72.  
  73. if nextbet > balance then
  74. nextbet=balance
  75. end
  76.  
  77. if balance < 0.00000001 then
  78. stop()
  79. end
  80.  
  81. if balance > target then
  82. stop()
  83. end
  84. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement