Advertisement
coinwalk

just-dice bot

Oct 7th, 2021
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. divide = 10000
  2. b = balance/divide
  3. bob = 10000000
  4. chance = 49.5
  5. bethigh = false
  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. resetseed()
  19. if win then
  20. v = v+1
  21. z = z+1
  22. else
  23. v = v-1
  24. h = h+1
  25. end
  26. if z>=2 and win then
  27. h = h-1
  28. end
  29. if h<bob then
  30. h = bob
  31. end
  32. if v<bob then
  33. v = bob
  34. end
  35. if (h>=(y+4)) or (v>=(x+7)) then
  36. nextbet = previousbet*2
  37. x = v
  38. y = h
  39. z = 0
  40. end
  41. if (balance>=(old+(b*10))) then
  42. nextbet = b
  43. old = balance
  44. end
  45. if (balance>target) then
  46. stop()
  47. end
  48. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement