Advertisement
coinwalk

best bot #1 snowybot lua

Jan 16th, 2024
830
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. oldbalancetwo = ((math.floor(balance/tens))*tens)
  9. multi = 1
  10. chance = 49.5
  11. bethigh = false
  12. nextbet = floatingbasebet
  13. resetstats()
  14.  
  15.  
  16.  
  17. function dobet()
  18. if ((balance>(((math.floor(balance/tens))*tens)+sevens)) and (balance<(((math.floor(balance/tens))*tens)+eights)) and (balance<oldbalancetwo) and (not (balance==oldbalanceone))) then
  19.     floatingbasebet = floatingbasebet=floatingbasebet
  20.     nextbet = floatingbasebet
  21.     multi = 0
  22.     oldbalanceone = balance
  23. end
  24. if ((balance>(((math.floor(balance/tens))*tens)+sevens)) and (balance<(((math.floor(balance/tens))*tens)+eights)) and (balance>oldbalancetwo) and (not (balance==oldbalanceone))) then
  25.     floatingbasebet = floatingbasebet=floatingbasebet
  26.     nextbet = floatingbasebet
  27.     oldbalanceone = balance
  28. end
  29. if ((balance>=(oldbalancetwo+(tens*multi))) and (balance<(((math.floor(balance/tens))*tens)+sevens))) then
  30.     floatingbasebet = base
  31.     nextbet = floatingbasebet
  32.     multi = 1
  33.     oldbalanceone  = 0
  34.     oldbalancetwo = ((math.floor(balance/tens))*tens)
  35. end
  36. if ((balance>=(oldbalancetwo+(tens*multi))) and (balance>(((math.floor(balance/tens))*tens)+eights))) then
  37.     floatingbasebet = base
  38.     nextbet = floatingbasebet
  39.     multi = 1
  40.     oldbalanceone  = 0
  41.     oldbalancetwo = ((math.floor(balance/tens))*tens)
  42. end
  43. if ((balance>=(oldbalancetwo+(tens*multi))) and (balance>(((math.floor(balance/tens))*tens)+sevens)) and (balance<(((math.floor(balance/tens))*tens)+eights))) then
  44.     floatingbasebet = base+base
  45.     nextbet = floatingbasebet
  46.     multi = 1
  47.     oldbalanceone = balance
  48.     oldbalancetwo = ((math.floor(balance/tens))*tens)
  49. end
  50. if (balance>=target) then
  51.     stop()
  52. end
  53. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement