Advertisement
coinwalk

best bot from snowy lua

Jul 31st, 2024
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. madman  = 0.0001 --240 divide
  2. tens    = (madman*10)
  3. twenty  = (madman*20)
  4. sevens  = (madman*6.9)
  5. eights  = (madman*7.9)
  6. fives   = (madman*4.9)
  7. dinner  = balance
  8. boghart = ((math.floor(balance/tens))*tens)
  9. james   = ((math.floor(balance/tens))*tens)
  10. snowy   = ((math.floor(balance/tens))*tens)
  11. chance  = 49.5
  12. upper   = 6.9
  13. downer  = 2.9
  14. bethigh = false
  15. nextbet = madman
  16. resetstats()
  17.  
  18. function dobet()
  19.     if (balance>(snowy+(nextbet*upper))) then
  20.         nextbet = previousbet*2
  21.         upper   = 4.9
  22.         downer  = 4.9
  23.         snowy   = balance
  24.     end
  25.     if (balance<(snowy-(nextbet*downer))) then
  26.         nextbet = previousbet*2
  27.         upper   = 4.9
  28.         downer  = 4.9
  29.         snowy   = balance
  30.     end
  31.     if ((balance<=(james-twenty)) and (balance<(((math.floor(balance/tens))*tens)+sevens))) then
  32.         nextbet = madman
  33.         upper   = 6.9
  34.         downer  = 2.9
  35.         snowy   = ((math.floor(balance/tens))*tens)
  36.         james   = ((math.floor(balance/tens))*tens)
  37.     end
  38.     if ((balance<=(james-twenty)) and (balance>(((math.floor(balance/tens))*tens)+eights))) then
  39.         nextbet = madman
  40.         upper   = 6.9
  41.         downer  = 2.9
  42.         snowy   = ((math.floor(balance/tens))*tens)
  43.         james   = ((math.floor(balance/tens))*tens)
  44.     end
  45.     if ((balance>=(boghart+tens)) and (balance<(((math.floor(balance/tens))*tens)+sevens))) then
  46.         nextbet = madman
  47.         upper   = 6.9
  48.         downer  = 2.9
  49.         snowy   = ((math.floor(balance/tens))*tens)
  50.         boghart = ((math.floor(balance/tens))*tens)
  51.         james   = ((math.floor(balance/tens))*tens)
  52.     end
  53.     if ((balance>=(boghart+tens)) and (balance>(((math.floor(balance/tens))*tens)+eights))) then
  54.         nextbet = madman
  55.         upper   = 6.9
  56.         downer  = 2.9
  57.         snowy   = ((math.floor(balance/tens))*tens)
  58.         boghart = ((math.floor(balance/tens))*tens)
  59.         james   = ((math.floor(balance/tens))*tens)
  60.     end
  61.     if (balance>=(dinner*24)) then
  62.         print("winner winner chicken dinner")
  63.         stop()
  64.     end
  65. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement