Advertisement
coinwalk

near nailed it

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