Advertisement
coinwalk

snowy robot

Mar 1st, 2021
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. fraction = 50000
  2. basebet = balance/fraction
  3. base = basebet
  4. chance = 24.975
  5. nextbet = basebet
  6. bethigh = false
  7. oldbal = balance
  8. target = 20000
  9. shit = balance
  10. lol = false
  11. resetstats()
  12.  
  13.  
  14. function dobet()
  15. if win and (lol==false) then
  16. shit = balance
  17. lol = true
  18. end
  19. if (balance<=(shit-(base*4))) then
  20. nextbet = previousbet*2
  21. shit = balance
  22. base = nextbet
  23. lol = false
  24. end
  25. if (balance>(shit+(base*4))) and (balance<oldbal) then
  26. nextbet = previousbet*2
  27. shit = balance
  28. base = nextbet
  29. end
  30. if (balance>=oldbal-0.00000001) and win then
  31. nextbet = balance/fraction
  32. base = balance/fraction
  33. shit = balance
  34. lol = false
  35. oldbal = balance
  36. end
  37. if balance>=target then
  38. stop()
  39. end
  40. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement