Advertisement
coinwalk

koool

Dec 27th, 2021
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. chance = 49.5
  2. b = balance/500
  3. oldbal = balance
  4. f = true
  5. target = 50000
  6. bethigh = false
  7. old = balance
  8. oldt = balance
  9. nextbet = b
  10. resetstats()
  11.  
  12. function dobet()
  13. if (balance>=(oldbal+(b*7))) then
  14. nextbet = b*2
  15. end
  16. if (balance<=(oldbal-(b*3))) then
  17. nextbet = b*2
  18. f = false
  19. end
  20. if (balance<=(oldbal-(b*9))) or ((balance>=old) and (f==false)) then
  21. nextbet = b
  22. f = true
  23. oldbal = balance
  24. old = balance
  25. end
  26. if (balance>=(old+(b*10))) then
  27. nextbet = b
  28. f = true
  29. oldbal = balance
  30. old = balance
  31. end
  32. if (balance>=(oldt+(b*10))) then
  33. nextbet = b
  34. f = true
  35. oldbal = balance
  36. old = balance
  37. oldt = balance
  38. end
  39. if (balance>=target) then
  40. stop()
  41. end
  42. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement