Advertisement
coinwalk

snowybot

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