Advertisement
dicekode

copy-04

Dec 19th, 2022
1,259
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.05 KB | None | 0 0
  1. basebet = 1e-6*balance
  2. nextbet = basebet
  3. chance  = 24
  4. ctlose  = 0
  5. stopwin = false
  6. nowdrop = 0
  7. lastch  = 24
  8.  
  9. resetseed()
  10. resetstats()
  11. resetchart()
  12.  
  13. function dobet()
  14.     if partialprofit>0 then
  15.         resetpartialprofit()
  16.         if stopwin then stop() end
  17.     end
  18.     if win then
  19.         nextbet = basebet
  20.         chance  = 20
  21.         ctlose  = 0
  22.     else
  23.         ctlose += 1
  24.         nextbet = nextbet+(nextbet*(35/100))
  25.         if ctlose%8==0 then
  26.             nextbet = nextbet-(nextbet*(14/100))
  27.             chance  = chance-(chance*(11/100))
  28.         end
  29.     end
  30.     if ctlose > 40 then stopwin = true end
  31.     if chance < lastch then lastch = chance end
  32.     if partialprofit < nowdrop then nowdrop = partialprofit end
  33.     print("")  
  34.     print("░▒▓- Last CH  \t[ "..string.format("%.2f",lastch).."% ]")
  35.     print("░▒▓- Basebet  \t[ "..string.format("%.8f",basebet).." ]")  
  36.     print("░▒▓- Dropped  \t[ "..string.format("%.8f",math.abs(nowdrop)).." ( "..string.format("%.2f",math.abs(nowdrop)/balance*100).."% ) ]")
  37. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement