Advertisement
coinwalk

Untitled

Nov 6th, 2022
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.79 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. sad = balance
  8. bal = balance
  9. upper = 6.9
  10. darn = 2.9
  11. crud = (snow*6.9)
  12. rupt = (snow*10)
  13. downer = false
  14. nextbet = snow
  15. resetstats()
  16.  
  17. function dobet()
  18. if (balance<sad) then
  19. bal = bal-joe
  20. sad = balance
  21. end
  22. if (balance>sad) then
  23. bal = bal+joe
  24. sad = balance
  25. end
  26. if (bal>(have+(joe*upper))) then
  27. nextbet = joe*2
  28. joe = joe*2
  29. upper = 4.9
  30. darn = 4.9
  31. have = bal
  32. end
  33. if (bal<(have-(joe*darn))) then
  34. nextbet = joe*2
  35. joe = joe*2
  36. downer = true
  37. upper = 4.9
  38. darn = 4.9
  39. have = bal
  40. end
  41. if ((bal>=old) and (downer==true) and (bal<(old+(crud)))) then
  42. downer = false
  43. have = old
  44. old = old
  45. darn = 2.9
  46. upper = 6.9
  47. nextbet = snow
  48. joe = snow
  49. end
  50. if ((bal>=old) and (downer==true) and (bal>=(old+(crud))) and (bal<(old+rupt))) then
  51. downer = false
  52. have = old
  53. old = old
  54. darn = 2.9
  55. upper = 6.9
  56. nextbet = snow*2
  57. joe = snow*2
  58. end
  59. if ((bal>(old+rupt)) and (bal<(old+((math.floor((bal-old)/(rupt)))*(rupt))+crud))) then
  60. downer = false
  61. have = old+((math.floor((bal-old)/(rupt)))*(rupt))
  62. old = old+((math.floor((bal-old)/(rupt)))*(rupt))
  63. darn = 2.9
  64. upper = 6.9
  65. nextbet = snow
  66. joe = snow
  67. end
  68. if ((bal>(old+rupt)) and (bal>=(old+((math.floor((bal-old)/(rupt)))*(rupt))+crud))) then
  69. downer = false
  70. have = old+((math.floor((bal-old)/(rupt)))*(rupt))
  71. old = old+((math.floor((bal-old)/(rupt)))*(rupt))
  72. darn = 2.9
  73. upper = 6.9
  74. nextbet = snow*2
  75. joe = snow*2
  76. end
  77. if (bal>=100000) then
  78. stop()
  79. end
  80. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement