Advertisement
coinwalk

paradice.in

Sep 21st, 2021
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. bob = 1000000
  2. b = balance/5000
  3. x = bob
  4. g = bob
  5. n = bob
  6. chance = 49.49
  7. bethigh = false
  8. nextbet = b
  9. target = 5
  10. old = balance
  11. v = bob
  12. resetstats()
  13.  
  14. function dobet()
  15. if win then
  16. v = v+1
  17. n = n+1
  18. else
  19. n = n-1
  20. v = v-1
  21. end
  22. if (n<=(g-4)) then
  23. nextbet = previousbet*2
  24. g = n
  25. end
  26. if n>g then
  27. n=bob
  28. g=bob
  29. end
  30. if (v>=(x+6)) then
  31. nextbet = previousbet*2
  32. x = v
  33. end
  34. if v<x then
  35. v=bob
  36. x=bob
  37. end
  38. if (balance>=(old+(b*9))) then
  39. nextbet = b
  40. v = bob
  41. x = bob
  42. y = bob
  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