Advertisement
coinwalk

for bender

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