Advertisement
coinwalk

closest manual yet

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