coinwalk

trial for 430 doge

Mar 10th, 2020
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. bethigh = true
  2. good = 40000
  3. prebet = balance/4300
  4. nextbet = prebet
  5. box = 0
  6. bit = 0
  7. min = 70
  8. max = 30.5
  9. cox = 49
  10. chance = cox
  11. function dobet()
  12. if win then
  13. chance = cox
  14. nextbet = prebet
  15. bethigh = true
  16. end
  17. if (chance==min) and !win then
  18. nextbet = previousbet*3.5
  19. end
  20. if lastBet.Roll < min then
  21. box += 1
  22. bit = 0
  23. end
  24. if lastBet.Roll > max then
  25. bit += 1
  26. box = 0
  27. end
  28. if (chance == cox) and (bit==6) then
  29. bethigh = true
  30. nextbet = balance/43
  31. chance = min
  32. box = 0
  33. bit = 0
  34. end
  35. if (chance == cox) and (box==6) then
  36. bethigh = false
  37. nextbet = balance/43
  38. chance = min
  39. box = 0
  40. bit = 0
  41. end
  42. if balance > good then
  43. stop()
  44. end
  45. end
Add Comment
Please, Sign In to add comment