Advertisement
coinwalk

fun

Jul 10th, 2020
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. more = balance
  2. fraction = 640
  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*2
  25. weeb = 0
  26. end
  27. if (winn>1) then
  28. winn = 0
  29. end
  30. if (beeb>5) then
  31. weeb = 0
  32. nextbet = previousbet
  33. end
  34. if (loss>2) and (winn==1) and win and (balance==more) then
  35. nextbet = basebet
  36. loss = 0
  37. more = balance
  38. end
  39. if (nextbet>(balance/2)) then
  40. nextbet = 0
  41. end
  42. if (balance > more) and win then
  43. nextbet = 0
  44. weeb = 0
  45. beeb = 0
  46. veeb = 0
  47. loss = 0
  48. winn = 0
  49. more = balance
  50. end
  51. if (balance >= target) then
  52. stop()
  53. ching()
  54. end
  55. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement