Advertisement
coinwalk

find theif

Aug 23rd, 2023
835
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. base            = (balance/640)
  2. floatingbasebet = base
  3. target          = 1000
  4. tens            = (base*10)
  5. sevens          = (base*6.9)
  6. eights          = (base*7.9)
  7. bogus           = balance
  8. chance          = 49.5
  9. bethigh         = false
  10. oldDegen        = 0
  11. dope            = balance
  12. nextbet         = floatingbasebet
  13. resetstats()
  14.  
  15.  
  16.  
  17. function dobet()
  18.     if win then
  19.         dope = dope+lastBet.Amount
  20.     else
  21.         dope = dope-lastBet.Amount
  22.     end
  23.     if (balance!=dope) then
  24.         print("scam")
  25.         stop()
  26.     end  
  27. if ((balance>(((math.floor(balance/tens))*tens)+sevens)) and (balance<(((math.floor(balance/tens))*tens)+eights)) and (not (balance==oldDegen))) then
  28.     floatingbasebet = floatingbasebet*2
  29.     oldDegen        = balance
  30. end
  31. if (((balance-(floatingbasebet*160))<=0) and (!win) and (balance<(((math.floor(balance/tens))*tens)+sevens))) then
  32.     floatingbasebet = base  
  33.     oldDegen        = 0
  34. end
  35. nextbet = floatingbasebet
  36. if (balance>=target) then
  37.     stop()
  38. end
  39. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement