Advertisement
coinwalk

snowy mega bot 200div

Oct 24th, 2022
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.38 KB | None | 0 0
  1. bal = balance
  2. snow = 0.0001
  3. joe = snow
  4. bethigh = false
  5. chance = 49.5
  6. have = balance
  7. old = balance
  8. darn = 2.9
  9. upper = 6.9
  10. wict = 0
  11. crud = (snow*6.9)
  12. rupt = (snow*10)
  13. stip = balance
  14. downer = false
  15. nextbet = snow
  16. resetstats()
  17.  
  18. function dobet()
  19. if win then
  20. bal = bal+lastBet.Amount
  21. end
  22. if not win then
  23. bal = bal-lastBet.Amount
  24. end
  25. if ((bal>(have+(joe*upper))) and (bal<old)) then
  26. nextbet = lastBet.Amount*2
  27. joe = lastBet.Amount*2
  28. darn = 4.9
  29. upper = 4.9
  30. have = bal
  31. end
  32. if ((bal>(have+(joe*upper))) and (bal>=old)) then
  33. nextbet = lastBet.Amount*2
  34. joe = lastBet.Amount*2
  35. darn = 4.9
  36. upper = 4.9
  37. downer = false
  38. have = bal
  39. end
  40. if (((bal<(have-(joe*darn))) and (wict<1)) or ((bal<(have-(joe*darn))) and (wict>=2))) then
  41. nextbet = lastBet.Amount*2
  42. joe = lastBet.Amount*2
  43. darn = 4.9
  44. upper = 4.9
  45. wict = wict+1
  46. downer = true
  47. have = bal
  48. end
  49. if ((bal<(have-(joe*darn))) and (wict==1)) then
  50. nextbet = lastBet.Amount*2
  51. joe = lastBet.Amount*2
  52. darn = 4.9
  53. upper = 4.9
  54. wict = wict+1
  55. downer = false
  56. have = bal
  57. end
  58. if ((bal>old) and (downer==true) and (bal<(old+(crud)))) then
  59. downer = false
  60. have = old
  61. old = old
  62. darn = 2.9
  63. wict = 0
  64. upper = 6.9
  65. nextbet = snow
  66. joe = snow
  67. end
  68. if ((bal>old) and (downer==true) and (bal>=(old+(crud)))) then
  69. downer = false
  70. have = old
  71. old = old
  72. darn = 2.9
  73. upper = 6.9
  74. wict = 0
  75. nextbet = snow*2
  76. joe = snow*2
  77. end
  78. if ((bal>=(old+rupt)) and (bal<(old+((math.floor((bal-old)/(rupt)))*(rupt))+crud))) then
  79. downer = false
  80. have = old+((math.floor((bal-old)/(rupt)))*(rupt))
  81. old = old+((math.floor((bal-old)/(rupt)))*(rupt))
  82. darn = 2.9
  83. upper = 6.9
  84. wict = 0
  85. nextbet = snow
  86. joe = snow
  87. end
  88. if ((bal>=(old+rupt)) and (bal>=(old+((math.floor((bal-old)/(rupt)))*(rupt))+crud))) then
  89. downer = false
  90. have = old+((math.floor((bal-old)/(rupt)))*(rupt))
  91. old = old+((math.floor((bal-old)/(rupt)))*(rupt))
  92. darn = 2.9
  93. upper = 6.9
  94. wict = 0
  95. nextbet = snow*2
  96. joe = snow*2
  97. end
  98. if (balance>=100) then
  99. stop()
  100. end
  101. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement