Advertisement
Baliarta

SC SIMPEL SAJA

Jan 22nd, 2023
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. chance = 2
  2. base = 0.00015
  3. nextbet = base
  4. bethigh = true
  5. target = balance * 3
  6. ifmods = 30
  7. iflose = 3
  8. resetstats()
  9. resetchart()
  10. function dobet()
  11. if balance > target then stop() end
  12. if win then
  13. nextbet = base
  14. else
  15. if (currentstreak%ifmods == 0) then
  16. nextbet = previousbet * iflose
  17. end
  18. end
  19. sleep(0.4)
  20. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement