Advertisement
coinwalk

i think this works

Jan 27th, 2019
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. chance=80
  2. profittarget=0.1
  3. function dobet()
  4. if win then
  5. nextbet=0.0000001
  6. else
  7. nextbet=previousbet*10
  8. end
  9. if currentstreak == -3 then
  10. nextbet=balance/100
  11. end
  12. if (balance) >= profittarget then
  13. stop();
  14. print(balance)
  15. print("TARGET ACHIEVED!!!")
  16. end
  17. end
  18. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement