Advertisement
coinwalk

ko

Aug 17th, 2021
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. cat = 240
  2. y = balance/cat
  3. chance = 49.95
  4. bethigh = false
  5. target = 3000
  6. nextbet = y
  7. old = balance
  8. older = balance
  9. bib = 0
  10. bob = 0
  11. resetstats()
  12.  
  13.  
  14. function dobet()
  15. if win then
  16. bob = bob+1
  17. bib = bib-1
  18. else
  19. bib = bib+1
  20. bob = bob-1
  21. end
  22. if (bob>=6) then
  23. nextbet = previousbet*2
  24. bob = 0
  25. end
  26. if (bib>=5) then
  27. nextbet = previousbet*2
  28. bib = 0
  29. end
  30. if (nextbet>=(y*2)) and (balance>=old) then
  31. bob = 0
  32. bib = 0
  33. nextbet = y
  34. old = balance
  35. end
  36. if (balance>(older*3)) then
  37. y = balance/cat
  38. bob = 0
  39. bib = 0
  40. nextbet = y
  41. older = balance
  42. end
  43. if balance>target or balance<nextbet then
  44. stop()
  45. end
  46. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement