Advertisement
coinwalk

long live snowybot

Aug 24th, 2023
832
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. base            = (balance/640)
  2. floatingbasebet = base
  3. target          = (balance*2.4)
  4. tens            = (base*10)
  5. sevens          = (base*6.9)
  6. eights          = (base*7.9)
  7. bogus           = balance
  8. chance          = 49.5
  9. bethigh         = false
  10. oldDegen        = 0
  11. bone            = ((math.floor(balance/tens))*tens)
  12. nextbet         = floatingbasebet
  13. bolux           = 0
  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 (not (balance==oldDegen))) then
  20.     floatingbasebet = floatingbasebet*2
  21.     oldDegen        = balance
  22. end
  23. if ((((balance-bolux)-(floatingbasebet*160))<=0) and (balance<(((math.floor(balance/tens))*tens)+sevens))) then
  24.     floatingbasebet = base  
  25.     oldDegen        = 0
  26.     bolux           = (balance-bogus)
  27.     bone            = ((math.floor(balance/tens))*tens)
  28. end
  29. if ((floatingbasebet>=(bogus/10)) and (balance<(((math.floor(balance/tens))*tens)+sevens))) then
  30.     floatingbasebet = base  
  31.     oldDegen        = 0
  32.     bolux           = (balance-bogus)
  33.     bone            = ((math.floor(balance/tens))*tens)
  34. end
  35. if ((balance>=(bone+(tens*2))) and (balance<(((math.floor(balance/tens))*tens)+sevens))) then
  36.     floatingbasebet = base  
  37.     oldDegen        = 0
  38.     bolux           = (balance-bogus)
  39.     bone            = ((math.floor(balance/tens))*tens)
  40. end
  41. nextbet = floatingbasebet
  42. if (balance>=target) then
  43.     stop()
  44. end
  45. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement