Advertisement
alfarishi

al

Apr 22nd, 2020
434
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. chance       = 66.66
  2. min          = 60.74
  3. max          = 68.85
  4. martimulti   = 3.510
  5. basebet      = 0.01
  6. startbalance = balance
  7.  
  8. nextbet = basebet
  9.  
  10. savefactor = 1.25
  11. target = .01
  12.  
  13. targetbalance = balance + target
  14.  
  15. low = 0
  16.  
  17. high = 0
  18.  
  19. rollcount=0
  20.  
  21. losecount = 0
  22.  
  23. stopnow = false
  24.  
  25. totallose = 0
  26.  
  27. wincount = 0
  28.  
  29. nextwinbet = basebet * martimulti
  30.  
  31. go = false
  32.  
  33. set = false
  34. bigtarget=balance*1.2
  35. function dobet()
  36.  
  37.  
  38.  
  39. chance=math.random(77.77,88.88)
  40.  
  41. if (balance > bigtarget ) then
  42.   stop()
  43. end
  44.  
  45. if rollcount == 4 then
  46.    
  47.    rollcount = 0
  48.    
  49.    bethigh   = false
  50.  
  51.  else
  52.    rollcount+=1
  53. end
  54.    if rollcount == 2 then
  55.  
  56.        rollcount = 2
  57.  
  58.        bethigh = true
  59. end
  60. if (win) then
  61.  
  62.  wincount += 1
  63.  
  64.  totallose = 0
  65.  
  66.  newbalance = balance
  67.  
  68.  if (high == low) then
  69.  
  70.      resetseed ()
  71.  end
  72. if (wincount == 1 and go) then
  73.  bethigh=false chance=math.random(min*100,max*100)/100
  74.  nextbet = nextwinbet
  75.  
  76.  go = false
  77.  
  78.  set = false
  79.  
  80.  else
  81.  
  82.  nextbet = basebet
  83.  
  84.  end
  85.  
  86.  if (wincount == 2 and previousbet != basebet) then
  87.  
  88.  if (stopnow) then stop() end
  89.  
  90.  martimulti = 4.5
  91.  
  92.  nextwinbet = basebet * martimulti
  93.  
  94.  set = true
  95.  
  96.  losecount = 0
  97.  
  98.  if (balance > targetbalance) then
  99.  
  100.  invest((balance - targetbalance)+target)
  101.  
  102.  targetbalance = targetbalance + target
  103.  
  104.  newbalance = targetbalance
  105.  
  106.  end
  107.  
  108.  if (newbalance > startbalance * savefactor) then
  109.  
  110.  invest(balance-startbalance)
  111.  
  112.  targetbalance = startbalance + target
  113.  
  114.  startbalance = startbalance * savefactor
  115.  
  116.  end
  117.  
  118.  end
  119.  
  120.  if (wincount == 2) then go = true end
  121.  
  122. else
  123.  
  124.  if (wincount == 1 and previousbet != basebet ) then
  125.  
  126.  nextwinbet = previousbet * martimulti
  127.  
  128.  martimulti = martimulti / 1.15
  129.  
  130.  if (martimulti < 3.25) then martimulti = 3.25 end
  131.  
  132.  losecount += 1
  133.  
  134.  print(losecount)
  135.  
  136.  else
  137.  
  138.  end
  139.  
  140.  wincount = 0
  141.  
  142.  totallose = totallose + 1
  143.  
  144.  if (totallose == 2) then go = true end
  145.  
  146.  nextbet = basebet
  147.  
  148. end
  149.  
  150. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement