Advertisement
coinwalk

funny

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