Advertisement
dicekode

wolf-my01

Sep 24th, 2021
535
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.84 KB | None | 0 0
  1. bb = 0.001
  2. cl = 0
  3. pc = 0
  4. is = 1.31
  5. ib = 1.08
  6. tp = balance * 1.25
  7. sl = balance * 0.5
  8.  
  9. nextbet = bb
  10. chance = 90
  11. bethigh = true
  12. function dobet()
  13.    
  14.     pb = previousbet
  15.     pf = profit
  16.     cx = math.random(79,90)
  17.    
  18.     if (win) then
  19.         cl = 0
  20.         if (pf > pc + 0.000001) then
  21.             pc = pf
  22.             nb = bb  
  23.             ch = {79,90}          
  24.         else
  25.             if (cx > 70) then
  26.                 ch = {5,12}
  27.                 nb = pb * is
  28.                
  29.             else
  30.                 nb = bb
  31.                 ch  = {79,90}
  32.             end
  33.         end
  34.     else
  35.         cl += 1
  36.         if (cl == 2) then
  37.             cl = 0
  38.             ch = {79,90}
  39.             nb = pb * ib
  40.         end
  41.     end
  42.  
  43.     nextbet = nb
  44.     bethigh = math.random(3) > 1.5
  45.     chance  = math.random(ch[1],ch[2])
  46.  
  47. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement