Advertisement
coinwalk

sweeeeeeeeeeeeet

Apr 24th, 2020
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. chance = 49.95
  2. bethigh = false
  3. bloom = balance*0.8
  4. target = balance*5
  5. basebet = balance/1000
  6. nextbet = basebet
  7. more = balance
  8. read = balance
  9. los = 0
  10. won = 0
  11. zom = 0
  12. xix = 0
  13. function dobet()
  14. if (win) then
  15. won+=1
  16. los = 0
  17. else
  18. won = 0
  19. los+=1
  20. end
  21. if balance > read then
  22. nextbet = balance/1000
  23. end
  24. if balance > read*2 then
  25. read = balance
  26. end
  27. if (won==2) then
  28. nextbet = previousbet*2
  29. won = 0
  30. end
  31. if (los==2) then
  32. nextbet = previousbet*2
  33. los = 0
  34. end
  35. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement