Advertisement
coinwalk

snowies 000s bot

Jan 25th, 2021
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. fraction = 10000
  2. basebet = balance/fraction
  3. nextbet = basebet
  4. chance = 66
  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. basebet = balance/fraction
  18. if win then
  19. snowy = 0
  20. else
  21. snowy+=1
  22. nextbet = previousbet*2
  23. end
  24. if (snowy==1) then
  25. int = previousbet
  26. end
  27. if (snowy>=1) then
  28. nextbet = 0
  29. jim+=1
  30. end
  31. if (jim>=1) and win then
  32. nextbet = (int*3)
  33. jim = 0
  34. end
  35. if win and snowy<2 then
  36. jim = 0
  37. end
  38. if (balance>=oldbal) then
  39. nextbet = basebet
  40. oldbal = balance
  41. end
  42. if balance>target then
  43. stop()
  44. end
  45. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement