Advertisement
coinwalk

jd

Oct 31st, 2022
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.50 KB | None | 0 0
  1. snow = balance/100
  2. joe = snow
  3. bethigh = false
  4. chance = 49.5
  5. have = balance
  6. old = balance
  7. pip = balance
  8. upper = 6.9
  9. darn = 2.9
  10. older = balance
  11. crud = (snow*6.9)
  12. rupt = (snow*10)
  13. downer = false
  14. nextbet = snow
  15. beet = 0
  16. resetstats()
  17.  
  18. function dobet()
  19. if ((balance>(have+(joe*upper))) and (balance<old)) then
  20. nextbet = lastBet.Amount*2
  21. joe = lastBet.Amount*2
  22. upper = 4.9
  23. darn = 4.9
  24. have = balance
  25. end
  26. if ((balance>(have+(joe*upper))) and (balance>=old)) then
  27. downer = false
  28. nextbet = lastBet.Amount*2
  29. joe = lastBet.Amount*2
  30. upper = 4.9
  31. darn = 4.9
  32. have = balance
  33. end
  34. if (balance<=(pip-(joe*darn))) then
  35. nextbet = lastBet.Amount*2
  36. joe = lastBet.Amount*2
  37. downer = true
  38. darn = 4.9
  39. have = balance
  40. pip = balance
  41. end
  42. if ((balance>=old) and (downer==true) and (balance<(old+(crud)))) then
  43. downer = false
  44. pip = old
  45. have = old
  46. old = old
  47. upper = 6.9
  48. darn = 2.9
  49. nextbet = snow
  50. joe = snow
  51. end
  52. if ((balance>=old) and (downer==true) and (balance>=(old+(crud)))) then
  53. downer = false
  54. pip = old
  55. have = old
  56. old = old
  57. upper = 6.9
  58. darn = 2.9
  59. nextbet = snow*2
  60. joe = snow*2
  61. end
  62. if ((balance>(old+rupt)) and (balance<(old+((math.floor((balance-old)/(rupt)))*(rupt))+crud))) then
  63. downer = false
  64. pip = old+((math.floor((balance-old)/(rupt)))*(rupt))
  65. have = old+((math.floor((balance-old)/(rupt)))*(rupt))
  66. old = old+((math.floor((balance-old)/(rupt)))*(rupt))
  67. darn = 2.9
  68. upper = 6.9
  69. nextbet = snow
  70. joe = snow
  71. end
  72. if ((balance>(old+rupt)) and (balance>=(old+((math.floor((balance-old)/(rupt)))*(rupt))+crud))) then
  73. downer = false
  74. pip = old+((math.floor((balance-old)/(rupt)))*(rupt))
  75. have = old+((math.floor((balance-old)/(rupt)))*(rupt))
  76. old = old+((math.floor((balance-old)/(rupt)))*(rupt))
  77. darn = 2.9
  78. upper = 6.9
  79. nextbet = snow*2
  80. joe = snow*2
  81. end
  82. if (balance>=(older*2)) then
  83. downer = false
  84. pip = old+((math.floor((balance-old)/(rupt)))*(rupt))
  85. have = old+((math.floor((balance-old)/(rupt)))*(rupt))
  86. old = old+((math.floor((balance-old)/(rupt)))*(rupt))
  87. darn = 2.9
  88. upper = 6.9
  89. snow = balance/100
  90. nextbet = snow
  91. joe = snow
  92. end
  93. if (balance>=100000) then
  94. stop()
  95. end
  96. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement