Advertisement
coinwalk

snowybot lua

Aug 22nd, 2023
726
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. oldbalanceone = ((math.floor(balance/tens))*tens)
  7. oldbalancetwo = ((math.floor(balance/tens))*tens)
  8. upper = 6.9
  9. downer = 2.9
  10. multi = 1
  11. chance = 49.5
  12. bethigh = false
  13. nextbet = floatingbasebet
  14. resetstats()
  15.  
  16.  
  17.  
  18. function dobet()
  19. if (balance>(oldbalanceone+(floatingbasebet*upper))) then
  20.     floatingbasebet = floatingbasebet*2
  21.     upper = 4.9
  22.     downer = 4.9
  23.     oldbalanceone = balance
  24. end
  25. if (balance<(oldbalanceone-(floatingbasebet*downer))) then
  26.     floatingbasebet = floatingbasebet*2
  27.     upper = 4.9
  28.     downer = 4.9
  29.     multi = 0
  30.     oldbalanceone = balance
  31. end
  32. if ((balance>=(oldbalancetwo+(tens*multi))) and (balance<(((math.floor(balance/tens))*tens)+sevens))) then
  33.     floatingbasebet = base
  34.     multi = 1
  35.     upper = 6.9
  36.     downer = 2.9
  37.     oldbalanceone = ((math.floor(balance/tens))*tens)
  38.     oldbalancetwo = ((math.floor(balance/tens))*tens)
  39. end
  40. nextbet = floatingbasebet
  41. if (balance>=target) then
  42. stop()
  43. end
  44. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement