Advertisement
coinwalk

for sheikh

Sep 21st, 2020
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. fraction = 1600
  2. basebet = balance/fraction
  3. chance = 49.95
  4. nextbet = basebet
  5. bethigh = false
  6. james = balance
  7. target = balance*4
  8. bin = 0
  9. falcon=balance
  10. resetstats()
  11. function dobet()
  12. if (balance>(james+(basebet*2))) then
  13. nextbet = previousbet*2
  14. end
  15. if !win then
  16. bin+=1
  17. end
  18. if (bin>=4) and balance<james then
  19. nextbet = previousbet*2
  20. bin = 0
  21. end
  22. if balance>james then
  23. bin = 0
  24. end
  25. if (balance>=(james+(basebet*7))) and win then
  26. nextbet = basebet
  27. bin = 0
  28. james = balance
  29. end
  30. if (balance<(falcon-100)) then
  31. stop()
  32. end
  33. if balance>target then
  34. stop()
  35. end
  36. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement