Advertisement
coinwalk

lolok

Feb 26th, 2020
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. bethigh = false
  2. good = 100000
  3. prebet = balance/1024000
  4. nextbet = prebet
  5. box = 0
  6. min = 49.95
  7. max = 50.05
  8. cox = 49
  9. kix = 0
  10. chance = cox
  11. function dobet()
  12. if win then
  13. chance = cox
  14. nextbet = prebet
  15. bethigh = false
  16. end
  17. if (chance==min) and not win then
  18. nextbet = previousbet*(math.random(200,300)/100)
  19. end
  20. if lastBet.Roll < min then
  21. box+=1
  22. end
  23. if lastBet.Roll > min then
  24. box = 0
  25. end
  26. if (chance == cox) and box >= 10 then
  27. chance = min
  28. nextbet = balance/10240
  29. box = 0
  30. end
  31. if balance > good then
  32. stop()
  33. end
  34. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement