Advertisement
coinwalk

my own strategy

Dec 14th, 2019
242
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. chance = 47
  2. bethigh = false
  3. lol = 0
  4. zog = 0
  5. wd = 0.005
  6. big = 0.0075
  7. huge = 0.01
  8. save = 0.005
  9. one = 0.00000001
  10. nextbet = one
  11. function dobet()
  12.  
  13. if (win) then
  14. chance = 47
  15. zog+=1
  16. lol = 0
  17. else
  18. lol += 1
  19. end
  20. if (lol==2) then
  21. nextbet = previousbet*4
  22. lol = 0
  23. end
  24. if (zog == 2) then
  25. nextbet = one
  26. zog = 0
  27. end
  28. if (currentstreak==4) then
  29. nextbet = previousbet*2
  30. end
  31. if balance > big and balance < huge then
  32. tip(294814877,wd)
  33. end
  34. if balance > huge then
  35. tip(294815237,save)
  36. end
  37. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement