Advertisement
coinwalk

2.4x a day lua

Oct 8th, 2023
700
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. base = balance/144000
  2. floatingbasebet = base
  3. target  = 150000
  4. tens = (base*10)
  5. sevens = (base*6.9)
  6. eights = (base*7.5)
  7. oldbalanceone  = 0
  8. oldbalancetwo = ((math.floor(balance/tens))*tens)
  9. multi = 1
  10. chance = 49.5
  11. bethigh = false
  12. nextbet = floatingbasebet
  13. resetstats()
  14.  
  15.  
  16.  
  17. function dobet()
  18. if ((balance>(((math.floor(balance/tens))*tens)+sevens)) and (balance<(((math.floor(balance/tens))*tens)+eights)) and (balance>oldbalancetwo) and (balance>oldbalanceone)) then
  19.     floatingbasebet = floatingbasebet*2
  20.     oldbalanceone = balance
  21. end
  22. if ((balance>(((math.floor(balance/tens))*tens)+sevens)) and (balance<(((math.floor(balance/tens))*tens)+eights)) and (balance>oldbalancetwo) and (balance<oldbalanceone)) then
  23.     floatingbasebet = floatingbasebet*2
  24.     oldbalanceone = balance
  25. end
  26. if ((balance>(((math.floor(balance/tens))*tens)+sevens)) and (balance<(((math.floor(balance/tens))*tens)+eights)) and (balance<oldbalancetwo) and (balance>oldbalanceone)) then
  27.     floatingbasebet = floatingbasebet*2
  28.     multi = 0
  29.     oldbalanceone = balance
  30. end
  31. if ((balance>(((math.floor(balance/tens))*tens)+sevens)) and (balance<(((math.floor(balance/tens))*tens)+eights)) and (balance<oldbalancetwo) and (balance<oldbalanceone)) then
  32.     floatingbasebet = floatingbasebet*2
  33.     multi  = 0
  34.     oldbalanceone = balance
  35. end
  36. if ((balance>=(oldbalancetwo+(tens*multi))) and (balance<(((math.floor(balance/tens))*tens)+sevens))) then
  37.     floatingbasebet = base
  38.     multi = 1
  39.     oldbalanceone  = 0
  40.     oldbalancetwo = ((math.floor(balance/tens))*tens)
  41. end
  42. nextbet = floatingbasebet
  43. if (balance>=target) then
  44.     stop()
  45. end
  46. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement