Advertisement
coinwalk

snowybot completed lua

Jan 23rd, 2024
1,235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. divide = 1000
  2. myvery = (divide/5)
  3. base = (balance/divide)
  4. target  = (balance*24)
  5. tens = (base*10)
  6. sevens = (base*6.9)
  7. eights = (base*7.5)
  8. oldbalanceone  = 0
  9. chance = 49.5
  10. bethigh = false
  11. nextbet = base
  12. resetstats()
  13.  
  14.  
  15.  
  16. function dobet()
  17. if ((balance>(((math.floor(balance/tens))*tens)+sevens)) and (balance<(((math.floor(balance/tens))*tens)+eights))) and (not (balance==oldbalanceone))) then
  18.     nextbet = previousbet*2
  19.     oldbalanceone = balance
  20. end
  21. if ((balance<=(nextbet*myvery)) and (balance<(((math.floor(balance/tens))*tens)+sevens))) then
  22.     nextbet = base
  23.     oldbalanceone  = 0
  24. end
  25. if (balance>=target) then
  26.     stop()
  27. end
  28. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement