Advertisement
coinwalk

update

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