Advertisement
dicekode

ff-01.lua

Aug 30th, 2024
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.12 KB | Cryptocurrency | 0 0
  1. -- bb:5e-8 pf:46 dd:19 ls:549
  2.  
  3. chance  = math.random(60,198)/100
  4. basebet = 0.00000005
  5. nextbet = basebet
  6.  
  7. function dobet()
  8.     if win then
  9.         chance  = math.random(60,198)/100
  10.         nextbet = basebet
  11.     else
  12.         nextbet = previousbet*((99/chance)/((99/chance)-1)*1.02)
  13.     end
  14.     manageRisk()
  15.     print("++ " .. incdrop .. inmdrop)
  16. end
  17.  
  18. ifpause  = 0
  19. ifdrop   = 50
  20. ifprofit = 500
  21.  
  22. sbal, mbal = balance, balance
  23. cdrop, mdrop = 0, 0
  24. stwin = false
  25. stbal = balance + (balance * (ifprofit / 100))
  26. function manageRisk()
  27.     if balance > stbal and ifprofit > 0 then
  28.         stop()
  29.     end
  30.     if balance > mbal then
  31.         if stwin then
  32.             stop()
  33.         end
  34.         if currentprofit / sbal * 100 > ifpause and ifpause > 0 then
  35.             pause()
  36.         end
  37.         mbal = balance
  38.     end
  39.     cdrop = mbal - balance
  40.     mdrop = math.max(mdrop, cdrop)
  41.     if cdrop / mbal * 100 > ifdrop and ifdrop > 0 then
  42.         stwin = true
  43.     end
  44.     incdrop = string.format(" [ %.8f ] ", cdrop)
  45.     inmdrop = string.format(" [ %.8f ] ", mdrop) .. string.format(" [ %.2f ]", mdrop / mbal * 100)
  46. end
  47.  
Tags: wolfbet
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement