Advertisement
coinwalk

kick ass lastbet chance

Feb 12th, 2020
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. bethigh = true
  2. good = 2
  3. prebet = balance/50000000
  4. nextbet = prebet
  5. chance = 49.95
  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 < 5 or lastBet.Roll > 95 then
  15. chance = 49.95
  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 < 5 and !win or lastBet.Roll > 95 and !win then
  26. nextbet = previousbet*2
  27. end
  28. if nextbet >= balance then
  29. nextbet = balance /50000
  30. end
  31. if balance > shit and win then
  32. nextbet = balance/50000000
  33. shit = balance*1.00000001
  34. end
  35. if balance > good then
  36. stop()
  37. end
  38. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement