Advertisement
coinwalk

lua needed snowybot

Feb 6th, 2024
1,139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. dick    = balance
  2. chance  = 49.5
  3. base    = balance/100
  4. bethigh = false
  5. sad     = (base*10)
  6. idiot   = (base*7.9)
  7. tom     = ((math.floor(balance/sad))*sad)
  8. up      = 6.9
  9. down    = 2.9
  10. bilance = balance
  11. harry   = balance  
  12. nextbet = base
  13. resetstats();
  14.  
  15. function dobet()
  16.     if win then
  17.         bilance += previousbet
  18.     else
  19.         bilance -= previousbet
  20.     end
  21.     if (nextbet==null) then
  22.         nextbet = previousbet
  23.     end
  24.     if (bilance>(tom+(nextbet*up))) then
  25.         up      = 4.9
  26.         down    = 4.9  
  27.         nextbet = previousbet*2
  28.         tom     = bilance
  29.     end
  30.     if (bilance<(tom-(nextbet*down))) then
  31.         up      = 4.9
  32.         down    = 4.9
  33.         nextbet = previousbet*2  
  34.         tom     = bilance
  35.     end
  36.     if (bilance>(dick+(base*24))) then  
  37.         nextbet = base
  38.         up      = 6.9
  39.         down    = 2.9
  40.         tom     = ((math.floor(bilance/sad))*sad)
  41.         harry   = bilance
  42.         dick    = bilance
  43.     end
  44.     if (balance<base) then
  45.         stop()
  46.     end
  47.    if (balance>240) then
  48.        stop()
  49.    end
  50. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement