Advertisement
coinwalk

snowy 0s bot again

Jan 25th, 2021
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. fraction = 21000
  2. basebet = balance/fraction
  3. nextbet = basebet
  4. chance = 90
  5. oldbal = balance
  6. snowy = 0
  7. jim = 0
  8. lol = balance
  9. bill = false
  10. target = balance*320000
  11. bethigh = false
  12. int = basebet
  13. resetstats()
  14.  
  15.  
  16. function dobet()
  17. if win then
  18. snowy = 0
  19. else
  20. snowy+=1
  21. nextbet = previousbet*2
  22. end
  23. if (snowy==1) then
  24. int = previousbet
  25. end
  26. if (snowy>=1) then
  27. nextbet = 0
  28. jim+=1
  29. end
  30. if (jim>=1) and win then
  31. nextbet = (int*12)
  32. jim = 0
  33. end
  34. if win and snowy<2 then
  35. jim = 0
  36. end
  37. if (balance>=oldbal) then
  38. nextbet = balance/fraction
  39. oldbal = balance
  40. end
  41. if balance>target then
  42. stop()
  43. end
  44. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement