Advertisement
dicekode

wolfbet-bnb

Oct 17th, 2021
528
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.98 KB | None | 0 0
  1. target     = 1000000
  2. maxstreak  = 70
  3. maxbalance = 1.5
  4. basebet    = balance / 10000
  5. balancef   = balance
  6. chancef    = 95
  7. bethigh    = true
  8. stpwin     = false
  9. nextbet    = basebet
  10. chance     = chancef
  11. betlose    = 0
  12. wagered    = 0
  13. profits    = 0
  14. balancehi  = 0
  15. maxdrop    = 20
  16. dropnow    = 0              
  17.  
  18. resetstats()
  19. function s(x,y) return x/((99/y)-1) end
  20. function t(x) return math.ceil(x*10^8)/10^8 end
  21. function dobet()
  22.     betlose += previousbet
  23.     wagered += previousbet
  24.     WolfRakeback = (wagered*0.01)*0.1
  25.     if balance > balancehi then
  26.         balancehi = balance
  27.     end
  28.     drops = (balancehi - balance) / balancehi * 100
  29.     if drops > dropnow then
  30.         dropnow = drops
  31.     end
  32.     -- print(">> LEFT "..target - wagered)
  33.     if win then
  34.         bethigh = math.random(5) > 3
  35.         if wagered > target then stop() end
  36.         if stpwin then stop() end
  37.         profits = profit
  38.         betlose = 0
  39.         chance  = chancef
  40.         nextbet = basebet
  41.         cbase   = 3
  42.     else
  43.         cbase += 0.05
  44.         chance  = cbase
  45.         if currentstreak > -2 then
  46.             betlose += balance * 0.01 --basebet * 5  
  47.         end
  48.         nextbet = s(betlose,chance)
  49.     end
  50.     if nextbet < basebet/10 then nextbet = basebet/10 end
  51.     nextbet = t(nextbet)
  52.     if drops > maxdrop and maxdrop > 0 then stpwin = true end
  53.     if currentstreak < -maxstreak and maxstreak > 0 then stpwin = true end
  54.     if balance > maxbalance then stop() end
  55.     print("\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n")  
  56.     print(" █-□ Profit:\t[ " ..string.format("%.2f",profit/balancef*100) .. "% ]\t")
  57.     print(" █-□ Dropdown:\t[ " ..string.format("%.2f",dropnow) .. "% ]\t")
  58.     print(" █-□ Wagered:\t[ " ..string.format("%.8f",wagered) .. " ]\t")  
  59.     print(" █-□ Rakeback:\t[ " ..string.format("%.8f",WolfRakeback) .. " ]\t")
  60.     print("--------------------------------------------")    
  61. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement