Advertisement
alfarishi

hhhh

May 3rd, 2020
598
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.27
  7. streak     = 36
  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.33
  15. nextbet    = basebet
  16.  
  17. function dobet()
  18.     if rollcount > 7 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=88.92
  31.     nextbet = basebet
  32.   else
  33.     chance = math.random(8.16,12.18)
  34.  if currentstreak <=-1 then
  35.       nextbet = previousbet
  36.     end
  37.  if currentstreak <=-7 then
  38.       nextbet = previousbet*multiplier
  39.     end
  40.   if currentstreak<=-12 then
  41.      nextbet = basebet*2.1
  42.     end
  43.  if currentstreak<=-13 then
  44.      nextbet = basebet*2.2
  45.  
  46.     end
  47.  if currentstreak<=-14 then
  48.      
  49.      nextbet = basebet*2.3
  50.     end
  51.  if currentstreak<=-15 then
  52.      
  53.      nextbet = basebet*2.4
  54.     end
  55.  if currentstreak<=-16 then
  56.      nextbet = basebet*2.6
  57.     end
  58.  if currentstreak<=-17 then
  59.      nextbet = basebet*2.8
  60.     end
  61.  if currentstreak<=-18 then
  62.      nextbet = basebet*3
  63.     end
  64.  if currentstreak<=-19 then
  65.      chance  = math.random(18,20)  
  66.      nextbet = basebet*3.2
  67.     end
  68.  if currentstreak<=-20 then
  69.        
  70.      nextbet = base
  71.     end
  72.  if currentstreak<=-21 then
  73.      chance  = math.random(18,20)
  74.      nextbet = previousbet*martimulti
  75.     end
  76.   end
  77. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement