Advertisement
coinwalk

manual strategy+ crazy bot tech lol !!!!!!!!!!

Aug 7th, 2020
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. fraction = 1200
  2. basebet = balance/fraction
  3. nextbet = basebet
  4. bethigh = false
  5. chance = 24
  6. target = 500000
  7. james = balance
  8. zim = 0
  9. zye = 0
  10. lye = 0
  11. fim = 0
  12. function dobet()
  13. if win then
  14. nextbet = previousbet
  15. fim+=1
  16. zim = 0
  17. else
  18. zim+=1
  19. fim = 0
  20. end
  21. if (fim>=2) then
  22. nextbet = previousbet*2
  23. fim = 0
  24. end
  25. if (zim<=1) then
  26. nextbet = previousbet
  27. zye = 0
  28. else
  29. zye+=1
  30. end
  31. if (zye>=(math.random(2,4))) then
  32. zim = 0
  33. nextbet = previousbet*2
  34. zye = 0
  35. lye+=1
  36. end
  37. if (lye>=2) then
  38. zye = 0
  39. lye = 0
  40. end
  41. if balance>james and win then
  42. nextbet = basebet
  43. james = balance
  44. end
  45. if balance>target then
  46. stop()
  47. end
  48. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement