Advertisement
coinwalk

mad crazy

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