Advertisement
Baliarta

Ch mundur

Feb 11th, 2023
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. basebet = 1e-8
  2. nextbet = basebet
  3. chance = 4
  4. ctlose = 0
  5. multixp = 0.05
  6. resetchart()
  7. resetstats()
  8. function dobet()
  9. if win then
  10. ctlose = 0
  11. nextbet = basebet
  12. chance = 4
  13. else
  14. ctlose += 1
  15. chance = chance - (chance * (0.5/100))
  16. multi = 1 +(chance*multixp)
  17. nextbet = previousbet * multi
  18. end
  19. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement