Advertisement
coinwalk

doge doubler

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