Advertisement
coinwalk

kick butt snowy bot

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