Advertisement
coinwalk

read this hacker

Feb 10th, 2024
766
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.00001
  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. plane     = 6.9
  11. submarine = 2.9
  12. bob       = balance
  13. flief     = balance
  14. nextbet   = base
  15. resetstats();
  16.  
  17. function dobet()
  18.     if (balance>(tom+(nextbet*plane))) then
  19.        plane     = 4.9
  20.        submarine = 4.9
  21.        nextbet   = previousbet*2
  22.        tom       = balance
  23.    end
  24.    if (balance<(tom-(nextbet*submarine))) then
  25.        plane     = 4.9
  26.        submarine = 4.9
  27.        nextbet   = previousbet*2
  28.        tom       = balance
  29.    end
  30.    if (balance>flief) then
  31.        flief = balance
  32.    end
  33.    if ((nextbet>=(balance/300)) and (((math.floor(((balance-bob)/5)/frock))*frock)>base) and (balance<bob) and (balance<flief) and (balance<(((math.floor(balance/sad))*sad)+idiot))) then  
  34.         plane     = 4.9
  35.         submarine = 4.9
  36.         tom       = balance
  37.         nextbet   = ((math.floor(((bob-balance)/5)/frock))*frock);
  38.    end  
  39.     if ((nextbet>=(balance/300)) and (balance>=flief) and (balance>=bob) and (balance<(((math.floor(balance/sad))*sad)+idiot))) then  
  40.         plane     = 6.9
  41.         submarine = 2.9
  42.         nextbet   = base
  43.         tom       = ((math.floor(balance/sad))*sad)
  44.         flief     = balance
  45.         bob       = balance
  46.     end
  47.         if (balance<base) then
  48.         stop()
  49.     end
  50.     if (balance>=(doc*24)) then
  51.        stop()
  52.    end
  53. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement