Advertisement
coinwalk

lol snowybot lua

Jun 27th, 2024
624
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. joey = 0
  2. james = ((math.floor(balance/tens))*tens)
  3. prefit = (balance/1440000)
  4. winnerdinner = balance
  5. tens = (prefit*10)
  6. sevens = (prefit*6.9)
  7. eights = (prefit*7.9)
  8. bethigh = false
  9. chance = 49.5
  10. nextbet = prefit
  11. resetstats()
  12.  
  13. function dobet()      
  14. if ((balance>(((math.floor(balance/tens))*tens)+sevens)) and (balance<(((math.floor(balance/tens))*tens)+eights)) and (not ((balance>(joey-(prefit/2))) and (balance<(joey+(prefit/2)))))) then
  15.     nextbet = previousbet*2
  16.     joey = balance
  17. end  
  18. if ((balance>=(james+tens)) and (balance<(((math.floor(balance/tens))*tens)+sevens))) then
  19.     nextbet = prefit
  20.     joey = 0
  21.     james = ((math.floor(balance/tens))*tens)
  22. end
  23. if balance >= (winnerdinner * 24000) then
  24.    print("winner winner chicken dinner")
  25.    stop()
  26. end    
  27. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement