Advertisement
dicekode

wolfbet-ltc

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