Advertisement
Baliarta

Balance 600 trx/doge

Dec 19th, 2022
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. basebet = 0.00005000
  2. nextbet = basebet
  3. chance = 24
  4. ctlose = 0
  5.  
  6. function dobet()
  7. if partialprofit>0 then
  8. resetpartialprofit()
  9. end
  10. if win then
  11. nextbet = basebet
  12. chance = 20
  13. ctlose = 0
  14. else
  15. ctlose += 1
  16. nextbet = nextbet+(nextbet*(55/100))
  17. if ctlose%8==0 then
  18. nextbet = nextbet-(nextbet*(14/100))
  19. chance = chance-(chance*(11/100))
  20. end
  21. end
  22. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement