Advertisement
coinwalk

need hanbreak ;p

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