Advertisement
dicekode

20-01-2023 -- 01

Jan 19th, 2023
970
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.29 KB | None | 0 0
  1. basebet  = 0.002
  2. incMulti = 2
  3. incLose  = 15
  4. fastch   = 12.5
  5. fastmt   = 1.35
  6. nextbet  = basebet
  7. chance   = 97.5
  8. streak   = 0
  9. mxstreak = 0
  10.  
  11. resetchart()
  12. resetseed()
  13. resetstats()
  14.  
  15. bal_high = balance
  16. bal_drop = 0
  17.  
  18. function dobet()
  19.  
  20.     if partialprofit > 0 then
  21.         resetpartialprofit()
  22.         bal_high = balance
  23.     end
  24.  
  25.     bal_diff = bal_high - balance
  26.     if bal_diff > bal_drop then
  27.         bal_drop = bal_diff
  28.     end
  29.  
  30.     if win then
  31.         ctlose  = 0
  32.         streak  = 0
  33.         nextbet = basebet
  34.         chance  = 97.5
  35.     else
  36.         ctlose += 1
  37.         if chance <= fastch then
  38.             streak += 1
  39.             chance  = fastch
  40.             nextbet = previousbet * fastmt
  41.         else
  42.             if ctlose > incLose then
  43.                 nextbet = previousbet * incMulti
  44.             end
  45.             chance = 99/((math.abs(partialprofit)/nextbet)+1)
  46.         end
  47.     end
  48.     if streak > mxstreak then mxstreak = streak end
  49.     print("")
  50.     print("-=■ Level   \t[ "..streak.."/"..mxstreak.." ]")
  51.     print("-=■ Dropdown\t[ "..string.format("%.8f",bal_drop).."\t"..string.format("%.2f",bal_drop / bal_high * 100).."% ]")
  52.     print("-=■ Profit  \t[ "..string.format("%.8f",profit).."\t"..string.format("%.2f",profit / (balance - profit) * 100).."% ]")
  53. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement