Advertisement
coinwalk

kick arse

Feb 15th, 2020
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. bethigh = true
  2. good = 20000
  3. prebet = balance/500
  4. nextbet = prebet
  5. chance = 77
  6. shit = balance*1.00000001
  7. function dobet()
  8. if lastBet.Roll > 50 then
  9. chance = lastBet.roll
  10. end
  11. if lastBet.Roll < 50 then
  12. chance = lastBet.Roll
  13. end
  14. if lastBet.roll < 48 or lastBet.Roll > 95 then
  15. chance = 77
  16. end
  17. if math.random(1,99) == 5 then
  18. bethigh = !bethigh
  19. end
  20. if win then
  21. resetseed()
  22. else
  23. nextbet = previousbet*(lastBet.Roll/10)
  24. end
  25. if lastBet.roll < 48 and !win or lastBet.Roll > 95 and !win then
  26. nextbet = previousbet*3
  27. end
  28. if balance > shit and win then
  29. nextbet = balance/500
  30. shit = balance*1.00000001
  31. end
  32. if balance > good then
  33. stop()
  34. end
  35. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement