Advertisement
coinwalk

boom bot snowybot 144

Feb 8th, 2024
1,018
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. doc     = balance
  2. chance  = 49.5  
  3. base    = 0.0001
  4. bethigh = false
  5. sad     = (base*10)
  6. nob     = (base*2.9)
  7. frock   = (base*2)
  8. idiot   = (base*6.9)
  9. tom     = ((math.floor(balance/sad))*sad)
  10. up      = 6.9
  11. down    = 2.9
  12. bob     = (((math.floor(balance/sad))*sad)-nob)
  13. idios   = ((balance-bob)/5)
  14. freak   = math.floor(idios/frock)
  15. boom    = freak*frock
  16. mighty  = base
  17. nextbet = base
  18. resetstats();
  19.  
  20. function dobet()
  21.     if (balance>(tom+(nextbet*up))) then
  22.         up      = 4.9
  23.         down    = 4.9
  24.         nextbet = previousbet*2
  25.         tom     = balance
  26.     end
  27.     if (balance<(tom-(nextbet*down))) then
  28.         up      = 4.9
  29.         down    = 4.9
  30.         nextbet = previousbet*2
  31.         tom     = balance
  32.     end  
  33.     if ((nextbet>=(balance/30)) and (balance>bob) and (balance<(((math.floor(balance/sad))*sad)+idiot))) then  
  34.         idios  = ((balance-bob)/5)
  35.         freak  = math.floor(idios/frock)
  36.         boom   = freak*frock
  37.         mighty = previousbet-boom
  38.         if mighty<base then
  39.             mighty = base
  40.         end
  41.         nextbet = mighty
  42.         up      = 6.9
  43.         down    = 2.9
  44.         tom     = ((math.floor(balance/sad))*sad)
  45.     end
  46.     if ((nextbet>=(balance/30)) and (balance<bob) and (balance<(((math.floor(balance/sad))*sad)+idiot))) then  
  47.         idios  = ((bob-balance)/5)
  48.         freak  = math.floor(idios/frock)
  49.         boom   = freak*frock
  50.         mighty = previousbet-boom
  51.         if mighty<base then
  52.             mighty = base
  53.         end
  54.         nextbet = mighty
  55.         up      = 6.9
  56.         down    = 2.9
  57.         tom     = ((math.floor(balance/sad))*sad)
  58.     end
  59.     if (balance<base) then
  60.         stop()
  61.     end
  62.     if (balance>=144) then
  63.        stop()
  64.    end
  65. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement