Advertisement
coinwalk

new strategy work in progress

Apr 7th, 2020
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. chance = 49.95
  2. lol = 0
  3. bethigh = false
  4. good = 100000
  5. basebet = balance/100000
  6. nextbet = basebet
  7. shit = balance
  8. zim = 0
  9. tan = math.random(3,4)
  10. function dobet()
  11.  
  12. if (win) then
  13. lol = 0
  14. zim+=1
  15. else
  16. lol += 1
  17. zim = 0
  18. end
  19. if nextbet >= balance/100000 and win then
  20. nextbet = balance/100000
  21. end
  22. if nextbet <= balance/10000000 and win then
  23. nextbet = balance/100000
  24. end
  25. if (lol==1) then
  26. nextbet = previousbet*3
  27. lol = 0
  28. end
  29. if (zim>=tan) then
  30. nextbet = previousbet/10
  31. zim = 0
  32. tan = math.random(3,4)
  33. end
  34. if balance > good then
  35. stop()
  36. end
  37. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement