Advertisement
coinwalk

funny

Aug 15th, 2020
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. fraction = 512
  2. basebet = balance/fraction
  3. nextbet = basebet
  4. bethigh = false
  5. chance = 24
  6. target = 5000
  7. james = balance
  8. zim = 0
  9. zye = 0
  10. lye = 0
  11. fim = 0
  12. resetstats()
  13. function dobet()
  14. if win then
  15. fim = 0
  16. else
  17. fim+=1
  18. end
  19. if (fim==8) then
  20. nextbet = previousbet*2
  21. fim = 0
  22. end
  23. if (nextbet==null) then
  24. nextbet = previousbet
  25. end
  26. if balance>james*1.2 and win then
  27. nextbet = basebet
  28. james = balance
  29. fim = 0
  30. end
  31. if nextbet<= basebet then
  32. nextbet = basebet
  33. end
  34.  
  35. if balance>target then
  36. stop()
  37. end
  38. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement