Advertisement
coinwalk

snowybot returns to yay

Aug 8th, 2020
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. fraction = 200000
  2. basebet = balance/fraction
  3. nextbet = basebet
  4. bethigh = false
  5. chance = 24
  6. target = 100000
  7. james = balance
  8. zim = 0
  9. zye = 0
  10. lye = 0
  11. fim = 0
  12. function dobet()
  13. if !win then
  14. zim+=1
  15. else
  16. zim = 0
  17. end
  18. if (zim<=2) then
  19. nextbet = previousbet
  20. zye = 0
  21. else
  22. zye+=1
  23. end
  24. if (zye>=(math.random(1,3))) then
  25. zim = 0
  26. nextbet = previousbet*2
  27. zye = 0
  28. lye+=1
  29. end
  30. if (lye>=2) then
  31. zye = 0
  32. lye = 0
  33. end
  34. if win then
  35. nextbet = previousbet*2
  36. end
  37. if (nextbet<=(balance/fraction)) then
  38. nextbet = balance/fraction
  39. end
  40. if balance>james and win then
  41. nextbet = balance/fraction
  42. james = balance
  43. end
  44. if balance>target then
  45. stop()
  46. end
  47. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement