Advertisement
coinwalk

snowybot.lua

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