Advertisement
coinwalk

just-dice.com

Sep 29th, 2021
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. bob = 1000000
  2. b = balance/50000
  3. x = bob
  4. chance = 49.5
  5. bethigh = true
  6. nextbet = b
  7. target = 5000
  8. old = balance
  9. v = bob
  10. resetstats()
  11.  
  12. function dobet()
  13. if win then
  14. v = v+1
  15. else
  16. v = v-1
  17. end
  18. if (v<=(x-4)) or (v>=(x+7)) then
  19. nextbet = previousbet*2
  20. x = v
  21. end
  22. if (balance>=(old+(b*10))) then
  23. nextbet = b
  24. v = bob
  25. x = bob
  26. old = balance
  27. end
  28. if (balance>target) then
  29. stop()
  30. end
  31. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement