Advertisement
coinwalk

latest bot

Sep 17th, 2019
376
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. chance = 49
  2. base = balance/500000
  3. prebet = balance/500000
  4. nextbet = prebet
  5. losecount = 0
  6. betcount = 0
  7. bethigh=true
  8.  
  9. function dobet()
  10. if win then
  11. nextbet = prebet
  12. chance = 49
  13. losecount = 0
  14. betcount += 1
  15. bethigh=true
  16. else
  17. losecount += 1
  18. betcount = 0
  19.  
  20. end
  21. if (losecount > 0) then
  22. chance = 49
  23. nextbet=previousbet*2
  24. bethigh=true
  25. end
  26. if (losecount > 3) then
  27. chance = 95
  28. nextbet= previousbet*55
  29. bethigh=false
  30. end
  31. if (losecount > 4) then
  32. chance = 95
  33. nextbet= previousbet*25
  34. end
  35. if balance > 10000 then
  36. stop()
  37. end
  38. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement