Advertisement
coinwalk

jd

Oct 31st, 2022
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.13 KB | None | 0 0
  1. snow = balance/10000
  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. have = balance
  24. end
  25. if ((balance>(have+(joe*upper))) and (balance>=old)) then
  26. downer = false
  27. nextbet = lastBet.Amount*2
  28. joe = lastBet.Amount*2
  29. upper = 4.9
  30. have = balance
  31. end
  32. if (balance<=(pip-(joe*darn))) then
  33. nextbet = lastBet.Amount*2
  34. joe = lastBet.Amount*2
  35. downer = true
  36. darn = 4.9
  37. have = balance
  38. pip = balance
  39. end
  40. if ((balance>=old) and (downer==true) and (balance<(old+(crud)))) then
  41. downer = false
  42. pip = old
  43. have = old
  44. old = old
  45. upper = 6.9
  46. darn = 2.9
  47. nextbet = snow
  48. joe = snow
  49. end
  50. if ((balance>=old) and (downer==true) and (balance>=(old+(crud)))) then
  51. downer = false
  52. pip = old
  53. have = old
  54. old = old
  55. upper = 6.9
  56. darn = 2.9
  57. nextbet = snow*2
  58. joe = snow*2
  59. end
  60. if ((balance>(old+rupt)) and (balance<(old+((math.floor((balance-old)/(rupt)))*(rupt))+crud))) then
  61. downer = false
  62. pip = old+((math.floor((balance-old)/(rupt)))*(rupt))
  63. have = old+((math.floor((balance-old)/(rupt)))*(rupt))
  64. old = old+((math.floor((balance-old)/(rupt)))*(rupt))
  65. darn = 2.9
  66. upper = 6.9
  67. nextbet = snow
  68. joe = snow
  69. end
  70. if ((balance>(old+rupt)) and (balance>=(old+((math.floor((balance-old)/(rupt)))*(rupt))+crud))) then
  71. downer = false
  72. pip = old+((math.floor((balance-old)/(rupt)))*(rupt))
  73. have = old+((math.floor((balance-old)/(rupt)))*(rupt))
  74. old = old+((math.floor((balance-old)/(rupt)))*(rupt))
  75. darn = 2.9
  76. upper = 6.9
  77. nextbet = snow*2
  78. joe = snow*2
  79. end
  80. if (balance>=100000) then
  81. stop()
  82. end
  83. end
  84.  
  85.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement