Advertisement
dicekode

ff-02.lua

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