Advertisement
coinwalk

snowybot

Jan 24th, 2022
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.42 KB | None | 0 0
  1. div = 100
  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. g = true
  26. k = false
  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) then
  43. oldt = balance
  44. end
  45. if ((balance>=(older+b)) and (k==true)) then
  46. nextbet = previousbet/2
  47. be = nextbet
  48. z = false
  49. g = true
  50. f = true
  51. k = false
  52. l = true
  53. older = (balance+(be*3))
  54. end
  55. if ((balance>=(old+(b*11))) and (z==true)) then
  56. nextbet = b
  57. be = nextbet
  58. z = false
  59. f = true
  60. k = true
  61. l = true
  62. oldg = (balance-b)
  63. oldt = (balance-b)
  64. old = (balance-b)
  65. end
  66. if nextbet<b then
  67. nextbet = b
  68. be = nextbet
  69. end
  70. if balance>=finish then
  71. stop()
  72. end
  73. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement