Advertisement
Guest User

The "Lockdown" DiceBot Script

a guest
Dec 28th, 2020
4,952
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.96 KB | None | 0 0
  1. -- Paste everything here into the programmer tab of dicebot. Test with small amount. Good luck!
  2. -- We use this script at Stake, https://stake.com/?c=061a1c2ff3 Send Rakeback code, "BitcoinWizards" to live support.
  3. -- WinDice - https://windice.io/?r=finggambling
  4. -- PrimeDice - https://primedice.com/?c=9e292347d3
  5. -- 999Dice - https://www.999dice.com/?342488460
  6. -- My Stake Username for donations / tips: BitcoinWizards
  7.  
  8. resetseed()
  9. basebet = balance / 10000
  10. basechance = 90
  11. increasebetEveryLosts = 15
  12. increasebetBy = 2
  13. maxstreak = -100
  14. target = balance * 1.5
  15. -------------------------------------
  16. chance = basechance
  17. nextbet = basebet
  18. co = (1/basechance)*99
  19. cco = co
  20. lc1 = 0
  21. lc2 = 0
  22. pp = 0
  23. profits = 0
  24. sbr = balance
  25. negs = 0
  26. lvl = 1
  27. lvl2 = lvl
  28. bethigh = true
  29. stopwin = false
  30. -------------------------------------
  31. function dobet()
  32. profits += currentprofit
  33. if profits >= 0 then
  34. if stopwin then stop() end
  35. end
  36. if win then
  37. nextbet = basebet
  38. chance = basechance
  39. cco = co
  40. lc1 = 0
  41. lc2 = 0
  42. lvl = 1
  43. sbr = balance
  44. else
  45. lc1+=1
  46. lc2+=1
  47. negs = sbr-balance
  48. pp = basebet*(lc1*(co-1))
  49. if lc2>=increasebetEveryLosts or chance < 5 then
  50. lvl += 1
  51. nextbet*=increasebetBy
  52. cco = ((negs+pp)/nextbet)+1
  53. lc2 = 0
  54. else
  55. cco+=co
  56. end
  57. chance = (1/cco)*99
  58. end
  59.  
  60. if chance < 5 then
  61. chance = 5
  62. nextbet = previousbet * 1.065
  63. end
  64. if lvl > lvl2 then lvl2 = lvl end
  65. if currentstreak < maxstreak then stopwin = true end
  66. if balance > target then stop() end
  67. print("\n\n")
  68. print("count "..lc2.."/"..increasebetEveryLosts)
  69. print("level "..lvl.."/"..lvl2)
  70. print("bet "..nextbet)
  71. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement