Advertisement
coinwalk

crazy update

Mar 28th, 2020
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. good = balance
  2. chance = 49.95
  3. bethigh = false
  4. kook = balance/110000
  5. nextbet = kook
  6. floyd = 0
  7. bit = 0
  8. box = 0
  9. target = balance*1000
  10. function dobet()
  11. if win then
  12. bethigh = false
  13. else
  14. nextbet = previousbet*1.5
  15. end
  16. if balance > good and win then
  17. nextbet = kook
  18. good = balance
  19. end
  20. if lastBet.Roll > 50.5 then
  21. bit+=1
  22. end
  23. if (bit==3) then
  24. bethigh = true
  25. bit = 0
  26. end
  27. if lastBet.Roll < 49.95 then
  28. box+=1
  29. end
  30. if (box==3) then
  31. bethigh = false
  32. box = 0
  33. end
  34. if balance > target then
  35. stop()
  36. end
  37. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement