Advertisement
coinwalk

snowybuddy

Oct 4th, 2020
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. basebet = balance/50000
  2. chance = 49.95
  3. nextbet = basebet
  4. bethigh = false
  5. james = balance
  6. target = 500
  7. bot = 0
  8. bin = 0
  9. bix = 0
  10. resetstats()
  11. function dobet()
  12.  
  13. if (!win) then
  14. bot+=1
  15. nextbet = previousbet*2
  16. bix+=1
  17. bethigh = !bethigh
  18. else
  19. bin+=1
  20. bix = 0
  21. bot = 0
  22. end
  23. if (bix>=2) then
  24. nextbet = previousbet
  25. bethigh = !bethigh
  26. bot = 0
  27. end
  28. if (bin>=2) and (bot==0) then
  29. nextbet = previousbet*2
  30. bix = 0
  31. bin = 0
  32. bot = 0
  33. end
  34. if balance>james then
  35. nextbet = balance/50000
  36. bix = 0
  37. bot = 0
  38. bin = 0
  39. james = balance
  40. end
  41. if balance>target then
  42. stop()
  43. end
  44. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement