Advertisement
coinwalk

woot bot

Feb 19th, 2020
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. bethigh = true
  2. good = 40000
  3. prebet = 0
  4. nextbet = prebet
  5. box = 0
  6. bit = 0
  7. min = 49.95
  8. max = 50.05
  9. chance = cox
  10. cox = 65
  11. lol = balance
  12. function dobet()
  13. if balance-lol > lol*0.0015 then
  14. chance = cox
  15. nextbet = prebet
  16. bethigh = true
  17. lol = balance
  18. end
  19. if (chance==min) and !win then
  20. nextbet = previousbet*2
  21. end
  22. if lastBet.Roll < min then
  23. box+=1
  24. bit = 0
  25. end
  26. if lastBet.Roll > max then
  27. bit+=1
  28. box = 0
  29. end
  30. if lastBet.Roll > min and lastBet.Roll < max then
  31. bit = 0
  32. box = 0
  33. end
  34. if (chance == min) and bit >= 3 and !win then
  35. bethigh = true
  36. end
  37. if (chance == min) and box >= 3 and !win then
  38. bethigh = false
  39. end
  40. if (chance == cox) and bit >= 5 then
  41. bethigh = true
  42. nextbet = balance/102400
  43. chance = min
  44. box = 0
  45. bit = 0
  46. end
  47. if (chance == cox) and box >= 5 then
  48. bethigh = false
  49. nextbet = balance/102400
  50. chance = min
  51. box = 0
  52. bit = 0
  53. end
  54. if balance > good then
  55. stop()
  56. end
  57. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement