Advertisement
coinwalk

snowzy

Jul 31st, 2024
277
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. madman  = balance/144000 --240 divide
  2. tens    = (madman*9)
  3. dinner  = balance
  4. boghart = balance
  5. chance  = 49.5
  6. downer  = 2.9
  7. snow    = 0
  8. bolux   = 0
  9. bethigh = false
  10. nextbet = madman
  11. resetstats()
  12.  
  13. function dobet()
  14.     if win then
  15.         snow = snow+1
  16.     end
  17.     if not win then
  18.        bolux = bolux+1
  19.      end
  20.    if (snow<=0) then
  21.        snow = 0
  22.    end
  23.    if (bolux<=0) then
  24.        bolux = 0
  25.    end
  26.    if (snow>=2) then
  27.        nextbet = previousbet*1.3735
  28.         snow    = 0
  29.     end  
  30.     if (bolux>=3) then
  31.         nextbet = previousbet*1.3735
  32.         bolux   = 0
  33.     end
  34.     if (balance>=boghart) then
  35.         nextbet = madman
  36.         downer  = 2.9
  37.         bolux   = 0
  38.         snow    = 0
  39.         boghart = balance
  40.     end
  41.     if (balance>=(dinner*24)) then
  42.         print("winner winner chicken dinner")
  43.         stop()
  44.     end
  45. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement