Advertisement
coinwalk

crazy bot update

Jun 18th, 2020
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. more = balance*1.0003
  2. basebet = balance/20000
  3. nextbet = basebet
  4. long = balance
  5. longer = balance
  6. loss = 0
  7. winn = 0
  8. lil = 0
  9. xim = 0
  10. xix = 0
  11. target = balance*25
  12. chance = 49.95
  13. function dobet()
  14. basebet = balance/20000
  15. if !win then
  16. loss+=1
  17. xix+=1
  18. lil+=1
  19. else
  20. xim+=1
  21. lil+=1
  22. winn+=1
  23. end
  24. if (winn==3) then
  25. winn = 0
  26. nextbet = previousbet*2
  27. end
  28. if (loss ==3) then
  29. loss = 0
  30. nextbet = previousbet*2
  31. end
  32. if (balance > more) then
  33. nextbet = basebet
  34. more = balance*1.0003
  35. end
  36. if (balance > target) then
  37. stop()
  38. end
  39. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement