Advertisement
coinwalk

new lua tech with crazy bot

Aug 1st, 2020
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. fraction = 99999
  2. basebet = balance/fraction
  3. nextbet = basebet
  4. bethigh = false
  5. chance = 24
  6. more = balance
  7. target = 30000
  8. function dobet()
  9. if ((math.random(1,5001))>2500) and !win then
  10. nextbet = previousbet*1.5
  11. end
  12. if balance>more and win then
  13. nextbet = balance/fraction
  14. more = balance
  15. end
  16.  
  17. if balance>target then
  18. stop()
  19. end
  20. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement