Advertisement
coinwalk

for 150 doge

Aug 1st, 2020
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. basebet = 0.01
  2. nextbet = basebet
  3. bethigh = false
  4. chance = 24
  5. more = balance
  6. target = 30000
  7. function dobet()
  8. if win then
  9. wi+=1
  10. end
  11. if ((math.random(1,5001))>2500) and !win then
  12. nextbet = previousbet*1.5
  13. end
  14. if balance>more and win then
  15. nextbet = basebet
  16. more = balance
  17. end
  18. if balance>target then
  19. stop()
  20. end
  21. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement