Advertisement
coinwalk

daily compound snowybot lua

Oct 8th, 2023
738
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. base = balance/144000
  2. floatingbasebet = base
  3. target  = 150000
  4. tens = (base*10)
  5. sevens = (base*6.9)
  6. eights = (base*7.5)
  7. oldbalanceone  = 0
  8. boom = balance
  9. oldbalancetwo = ((math.floor(balance/tens))*tens)
  10. multi = 1
  11. chance = 49.5
  12. bethigh = false
  13. nextbet = floatingbasebet
  14. resetstats()
  15.  
  16.  
  17.  
  18. function dobet()
  19. if ((balance>(((math.floor(balance/tens))*tens)+sevens)) and (balance<(((math.floor(balance/tens))*tens)+eights)) and (balance>oldbalancetwo) and (balance>oldbalanceone)) then
  20.     floatingbasebet = floatingbasebet*2
  21.     oldbalanceone = balance
  22. end
  23. if ((balance>(((math.floor(balance/tens))*tens)+sevens)) and (balance<(((math.floor(balance/tens))*tens)+eights)) and (balance>oldbalancetwo) and (balance<oldbalanceone)) then
  24.     floatingbasebet = floatingbasebet*2
  25.     oldbalanceone = balance
  26. end
  27. if ((balance>(((math.floor(balance/tens))*tens)+sevens)) and (balance<(((math.floor(balance/tens))*tens)+eights)) and (balance<oldbalancetwo) and (balance>oldbalanceone)) then
  28.     floatingbasebet = floatingbasebet*2
  29.     multi = 0
  30.     oldbalanceone = balance
  31. end
  32. if ((balance>(((math.floor(balance/tens))*tens)+sevens)) and (balance<(((math.floor(balance/tens))*tens)+eights)) and (balance<oldbalancetwo) and (balance<oldbalanceone)) then
  33.     floatingbasebet = floatingbasebet*2
  34.     multi  = 0
  35.     oldbalanceone = balance
  36. end
  37. if ((balance>=(oldbalancetwo+(tens*multi))) and (balance<(((math.floor(balance/tens))*tens)+sevens))) then
  38.     floatingbasebet = base
  39.     multi = 1
  40.     oldbalanceone  = 0
  41.     oldbalancetwo = ((math.floor(balance/tens))*tens)
  42. end
  43. if ((balance>=(boom*2.4)) and (balance<(((math.floor(balance/tens))*tens)+sevens))) then
  44.     base = balance/144000
  45.     tens = (base*10)
  46.     sevens = (base*6.9)
  47.     eights = (base*7.5)
  48.     floatingbasebet = base
  49.     multi = 1
  50.     oldbalanceone  = 0
  51.     oldbalancetwo = ((math.floor(balance/tens))*tens)
  52.     boom = balance
  53. end
  54. nextbet = floatingbasebet
  55. if (balance>=target) then
  56.     stop()
  57. end
  58. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement