Advertisement
coinwalk

next to complete

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