Advertisement
coinwalk

latest

Mar 22nd, 2021
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. fraction = 50000
  2. basebet = balance/fraction
  3. nextbet = basebet
  4. result = {0,0,0,0}
  5. i = 1
  6. winz = 0
  7. chance = 24.975
  8. oldbal = balance
  9. target = 50000
  10. resetstats()
  11.  
  12. function dobet()
  13. if win then
  14. result[i]=1
  15. else
  16. nextbet = previousbet
  17. result[i]=0
  18. end
  19. i = i+1
  20. if (i==4) then
  21. i = 1
  22. end
  23. winz = result[1]+result[2]+result[3]+result[4]
  24. if (winz==2) and winz<3 then
  25. nextbet = previousbet*2
  26. result[i]=0
  27. else
  28. nextbet = previousbet
  29. end
  30. if !win then
  31. nextbet = previousbet
  32. end
  33. if (balance>=(oldbal+(basebet*10))) then
  34. nextbet = balance/fraction
  35. result[i]=0
  36. oldbal = balance
  37. end
  38. if balance>target then
  39. stop()
  40. end
  41. end
  42.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement