Advertisement
coinwalk

best bot ever i've made for dicebot

Oct 3rd, 2019
456
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. chance = 49.95
  2. base = balance/567000
  3. prebet = balance/567000
  4. nextbet = prebet
  5. losecount = 0
  6. betcount = 0
  7. bethigh = true
  8.  
  9. function dobet()
  10. if win then
  11. nextbet = prebet
  12. chance = 49.95
  13. losecount = 0
  14. betcount += 1
  15. resetstats();
  16. bethigh=true
  17. else
  18. losecount += 1
  19. betcount = 0
  20.  
  21. end
  22. if (losecount > 0) then
  23. chance = 79.92
  24. nextbet = previousbet*16
  25. bethigh = false
  26. bethigh = false
  27. end
  28. if (losecount > 1) then
  29. chance = 62.43
  30. nextbet = previousbet*2
  31. bethigh = false
  32. end
  33. if (losecount > 2) then
  34. chance = 95
  35. nextbet = previousbet*35
  36. bethigh = false
  37. resetseed();
  38. end
  39. if (losecount > 3) then
  40. chance = 95
  41. nextbet = previousbet*22.5
  42. bethigh = true
  43. resetseed();
  44. end
  45. if balance > 1550000 then
  46. stop()
  47. end
  48. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement