Advertisement
coinwalk

trialing this on 300 doge

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