Advertisement
coinwalk

snowybot

Jan 25th, 2022
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.64 KB | None | 0 0
  1. div = 50000
  2. b = (balance/div)
  3. be = (balance/div)
  4. chance = 49.5
  5. bethigh = false
  6. older = balance
  7. old = balance
  8. oldt = balance
  9. oldg = balance
  10. f = true
  11. g = true
  12. k = true
  13. z = false
  14. him = 2
  15. loss = 0
  16. finish = 50000
  17. nextbet = b
  18. resetstats()
  19.  
  20. function dobet()
  21. if ((balance==(oldg+(b*7))) and (f==true)) then
  22. nextbet = previousbet*2
  23. be = nextbet
  24. f = false
  25. k = false
  26. g = true
  27. oldg = balance
  28. end
  29. if (balance<oldg) then
  30. oldg = balance
  31. end
  32. if ((balance<(oldt-(be*2))) and (g==true)) then
  33. nextbet = previousbet*2
  34. be = nextbet
  35. f = true
  36. g = false
  37. z = true
  38. k = true
  39. oldt = balance
  40. older = balance
  41. end
  42. if ((balance<(oldt-(be*2))) and (g==false)) then
  43. nextbet = previousbet/2
  44. be = nextbet
  45. f = true
  46. g = true
  47. z = true
  48. k = true
  49. oldt = balance
  50. older = balance
  51. end
  52. if (balance>oldt) then
  53. oldt = balance
  54. end
  55. if ((balance>=older) and (k==true)) then
  56. nextbet = previousbet*2
  57. be = nextbet
  58. z = false
  59. g = true
  60. f = true
  61. k = false
  62. l = true
  63. older = ((balance+(be*3))+b)
  64. end
  65. if (balance>=(old+(b*10))) then
  66. nextbet = b
  67. be = nextbet
  68. z = false
  69. f = true
  70. k = true
  71. g = true
  72. l = true
  73. oldg = balance
  74. oldt = balance
  75. old = balance
  76. end
  77. if nextbet<b then
  78. nextbet = b
  79. be = nextbet
  80. end
  81. if balance>=finish then
  82. stop()
  83. end
  84. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement