Advertisement
coinwalk

someone woot

Jul 10th, 2020
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. more = balance
  2. fraction = 256
  3. basebet = balance/fraction
  4. nextbet = 0
  5. bethigh = false
  6. loss = 0
  7. winn = 0
  8. weeb = 0
  9. beeb = 0
  10. veeb = 0
  11. target = balance*2
  12. chance = 49.95
  13.  
  14. function dobet()
  15. if win then
  16. winn+=1
  17. beeb+=1
  18. weeb+=1
  19. else
  20. loss+=1
  21. weeb+=1
  22. end
  23. if (weeb>0) then
  24. nextbet = previousbet*1.5
  25. weeb = 0
  26. end
  27. if (winn>1) then
  28. winn = 0
  29. end
  30. if (loss>2) and (winn==1) and win and (balance==more) then
  31. nextbet = basebet
  32. loss = 0
  33. more = balance
  34. end
  35. if (nextbet>(balance/2)) then
  36. nextbet = 0
  37. end
  38. if (balance > more) and win then
  39. nextbet = 0
  40. weeb = 0
  41. beeb = 0
  42. veeb = 0
  43. loss = 0
  44. winn = 0
  45. more = balance
  46. end
  47. if (balance >= target) then
  48. stop()
  49. ching()
  50. end
  51. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement