Advertisement
coinwalk

snowybot

Jan 20th, 2021
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.58 KB | None | 0 0
  1. basebet = balance/20000
  2. nextbet = basebet
  3. lol = balance
  4. oldbal = balance
  5. snowy = 0
  6. chance = 49.95
  7. bethigh = false
  8. target = 30000
  9. bill = false
  10. six = false
  11. slob = 0
  12. smit = 0
  13. bim = 0
  14. sam = false
  15. resetstats()
  16.  
  17. function dobet()
  18. basebet = balance/20000
  19. if !win then
  20. snowy+=1
  21. slob+=1
  22. else
  23. snowy = 0
  24. slob = 0
  25. end
  26. if (balance>lol) and (balance<(lol+(basebet*5))) and sam==false and bill==false then
  27. nextbet = previousbet*2
  28. snowy = 0
  29. lol = balance
  30. sam = true
  31. end
  32. if (balance<lol) and (slob>=2) then
  33. nextbet = previousbet*2
  34. slob = 0
  35. sam = false
  36. lol = balance
  37. end
  38. if balance>=oldbal and bill==true and win then
  39. nextbet = basebet
  40. snowy = 0
  41. slob = 0
  42. six = false
  43. sam = false
  44. lol = balance
  45. oldbal = balance
  46. bill = false
  47. end
  48. if snowy>=3 then
  49. bill = true
  50. six = true
  51. snowy = 0
  52. end
  53. if (six==true) then
  54. lol = balance
  55. nextbet = previousbet
  56. end
  57. if win and six==true then
  58. six = false
  59. lol = balance
  60. end
  61. if (balance>=(oldbal+(basebet*5))) and win then
  62. nextbet = basebet
  63. lol = balance
  64. snowy = 0
  65. slob = 0
  66. sam = false
  67. oldbal = balance
  68. bill = false
  69. six = false
  70. end
  71. if balance>target then
  72. stop()
  73. end
  74. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement