Advertisement
dicekode

steady-ch47.lua

Jun 24th, 2021
506
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.93 KB | None | 0 0
  1. baltrade = balance * 0.5
  2. sw       = false
  3. resetstats()
  4. function init()
  5.     if sw then stop() end
  6.     mt = 2
  7.     bx = baltrade * 0.00030
  8.     mb = bx * 3
  9.     bb = baltrade * 50 / 10^8
  10.     if bb < mb then
  11.         bb = mb
  12.     end
  13.     bh = true
  14.     nb = bx
  15.     hl = 0
  16.     bc = 0
  17. end
  18.  
  19. ba = {true,false,true,true,false,true,false,false}
  20. tp = balance * 1.1
  21.  
  22. init()
  23. resetstats()
  24.  
  25. chance  = 47.5
  26. nextbet = nb
  27. bethigh = bh
  28.  
  29. function dobet()
  30.     bc = bc+1
  31.     pb = previousbet
  32.  
  33.     if (bc <= 4) then
  34.         nb = bx
  35.     end
  36.     if (bc >= 4) then
  37.         nb = bb
  38.         hl = hl+1
  39.     end
  40.     if (bc >= 5) then
  41.         nb = (pb*mt)
  42.     end
  43.  
  44.     if hl < 9 and hl > 0 then
  45.         bh = ba[hl]
  46.     else
  47.         bh = true
  48.     end
  49.  
  50.     if win then init()
  51.     elseif (bc == 20) then init() end
  52.     if balance >= tp then stop() end
  53.  
  54.     nextbet = nb
  55.     bethigh = bh
  56.     if currentstreak <= -9 then sw = true end
  57. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement