Advertisement
Baliarta

Sc CH 19 20

Dec 22nd, 2022
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | Cryptocurrency | 0 0
  1. basebet = 0.0000001287
  2. nextbet = basebet
  3. chance = 24
  4. ctlose = 0
  5. target = balance*0.24
  6. resetstats()
  7. function dobet()
  8. if profit >= target then stop() end
  9.  
  10. if partialprofit>0 then
  11. resetpartialprofit()
  12. end
  13. if win then
  14. nextbet = basebet
  15. chance = 19
  16. ctlose = 0
  17. else
  18. ctlose += 1
  19. nextbet = nextbet+(nextbet*(55/100))
  20. if ctlose%8==0 then
  21. nextbet = nextbet-(nextbet*(14/100))
  22. chance = chance-(chance*(11/100))
  23. end
  24. end
  25. end
Tags: Dicebot
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement