Advertisement
coinwalk

sweet what does mine say dude

Apr 12th, 2020
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. chance = 66
  2. lol = 0
  3. bethigh = false
  4. good = 20000
  5. basebet = balance/160
  6. nextbet = basebet
  7. more = balance
  8. los = 0
  9. loss = 0
  10. six = 0
  11. function dobet()
  12.  
  13. if (win) then
  14. lol += 1
  15. bethigh = false
  16. los = 0
  17. loss = 0
  18. else
  19. los +=1
  20. lol = 0
  21. loss+=1
  22. end
  23. if (los == 2) then
  24. nextbet = previousbet*3
  25. los = 0
  26. end
  27. if balance > more and win then
  28. nextbet = basebet
  29. bethigh = false
  30. more = balance
  31. end
  32. if balance > good then
  33. stop()
  34. end
  35. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement