coinwalk

snowybot lua

Aug 29th, 2023
170
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.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. multi           = 1
  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>bone) and (balance!=oldDegen)) then
  20.     floatingbasebet = floatingbasebet*2
  21.     oldDegen        = balance
  22. end
  23. if ((balance>(((math.floor(balance/tens))*tens)+sevens)) and (balance<(((math.floor(balance/tens))*tens)+eights)) and (balance<bone) and (balance!=oldDegen)) then
  24.     floatingbasebet = floatingbasebet*2
  25.     multi           = 0
  26.     oldDegen        = balance
  27. end
  28. if ((balance>=(bone+(tens*multi))) and (balance<(((math.floor(balance/tens))*tens)+sevens))) then
  29.     floatingbasebet = base  
  30.     oldDegen        = 0
  31.     multi           = 1
  32.     bone            = ((math.floor(balance/tens))*tens)
  33. end
  34. nextbet = floatingbasebet
  35. if (balance>=target) then
  36.     stop()
  37. end
  38. end
Add Comment
Please, Sign In to add comment