Advertisement
alfarishi

Untitled

Apr 30th, 2020
425
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. --by /wedos g@mbel--
  2.  
  3.  
  4.  
  5.  
  6. martimulti = 1.697
  7. streak     = 26
  8. risk       = (martimulti ^ streak) * (streak/(streak *(martimulti - 1)))
  9. base       = balance/risk
  10. rollcount  = 0
  11. basebet    = balance*0.000001
  12. bethigh    = true
  13. chance     = 88
  14. multiplier = 1.63
  15. nextbet    = basebet
  16.  
  17. function dobet()
  18.     if rollcount == 8 then
  19.         rollcount = 0
  20.         resetseed()
  21.         bethigh = !bethigh
  22.     else
  23.         rollcount+=1
  24.     end
  25.     if rollcount == 3 then
  26.         rollcount = 4
  27.         bethigh   = false
  28.     end
  29.  if win then
  30.     chance  = 8.92
  31.     nextbet = basebet
  32.   else
  33.     chance = math.random(5.16,32.18)
  34.  if currentstreak <=-1 then
  35.       nextbet = previousbet
  36.     end
  37.   if currentstreak<=-7 then
  38.     chance = math.random(5.16,18)
  39.      nextbet = basebet*1.1
  40.     end
  41.  if currentstreak<=-10 then
  42.     chance = math.random(16,22.18)
  43.      nextbet = basebet*1.3
  44.  
  45.     end
  46.  if currentstreak<=-12 then
  47.     chance = math.random(5.16,12.18)
  48.      
  49.      nextbet = basebet*1.6
  50.     end
  51.  if currentstreak<=-14 then
  52.     chance = math.random(15.16,22.18)
  53.      
  54.      nextbet = basebet*2
  55.     end
  56.  if currentstreak<=-16 then
  57.     chance = math.random(5.16,12.18)
  58.      nextbet = basebet*2.3
  59.     end
  60.  if currentstreak<=-17 then
  61.     chance = math.random(15.16,22.18)
  62.      nextbet = basebet*2.5
  63.     end
  64.  if currentstreak<=-18 then
  65.     chance = math.random(5.16,12.18)
  66.      nextbet = basebet*3
  67.     end
  68.  if currentstreak<=-19 then
  69.      chance  = math.random(5,30)  
  70.      nextbet = basebet*3.2
  71.     end
  72.  if currentstreak<=-20 then
  73.        
  74.     chance = math.random(5.16,12.18)
  75.      nextbet = base
  76.     end
  77.  if currentstreak<=-21 then
  78.      chance  = math.random(5.8,34.0)
  79.      nextbet = previousbet*martimulti
  80.     end
  81.   end
  82. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement