Advertisement
coinwalk

lol

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