Advertisement
coinwalk

snowybot lua

Feb 10th, 2024
1,146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. doc     = balance
  2. chance  = 49.5  
  3. blob    = (doc/1000)
  4. bethigh = false
  5. sad     = (blob*10)
  6. idiot   = (blob*6.9)
  7. tom     = ((math.floor(balance/sad))*sad)
  8. plane      = 6.9
  9. submarine    = 2.9
  10. nextbet = blob
  11. resetstats();
  12.  
  13. function dobet()
  14.     if (balance>(tom+(nextbet*plane))) then
  15.         plane      = 4.9
  16.         submarine    = 4.9
  17.         nextbet = previousbet*2
  18.         tom     = tostring(balance)
  19.     end
  20.     if (balance<(tom-(nextbet*submarine))) then
  21.         plane      = 4.9
  22.         submarine    = 4.9
  23.         nextbet = previousbet*2
  24.         tom     = tostring(balance)
  25.     end  
  26.     if ((nextbet>=(balance/300)) and (balance<(((math.floor(balance/sad))*sad)+idiot))) then  
  27.         nextbet = blob
  28.         plane      = 6.9
  29.         submarine    = 2.9
  30.         tom     = ((math.floor(balance/sad))*sad)
  31.     end
  32.     if (balance<blob) then
  33.         stop()
  34.     end
  35.     if (balance>=144) then
  36.        stop()
  37.    end
  38. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement