Advertisement
coinwalk

sweet dicebot script always pays

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