Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Paste everything here into the programmer tab of dicebot. Test with small amount. Good luck!
- -- We use this script at Stake, https://stake.com/?c=061a1c2ff3 Send Rakeback code, "BitcoinWizards" to live support.
- -- WinDice - https://windice.io/?r=finggambling
- -- PrimeDice - https://primedice.com/?c=9e292347d3
- -- 999Dice - https://www.999dice.com/?342488460
- -- My Stake Username for donations / tips: BitcoinWizards
- resetseed()
- basebet = balance / 10000
- basechance = 90
- increasebetEveryLosts = 15
- increasebetBy = 2
- maxstreak = -100
- target = balance * 1.5
- -------------------------------------
- chance = basechance
- nextbet = basebet
- co = (1/basechance)*99
- cco = co
- lc1 = 0
- lc2 = 0
- pp = 0
- profits = 0
- sbr = balance
- negs = 0
- lvl = 1
- lvl2 = lvl
- bethigh = true
- stopwin = false
- -------------------------------------
- function dobet()
- profits += currentprofit
- if profits >= 0 then
- if stopwin then stop() end
- end
- if win then
- nextbet = basebet
- chance = basechance
- cco = co
- lc1 = 0
- lc2 = 0
- lvl = 1
- sbr = balance
- else
- lc1+=1
- lc2+=1
- negs = sbr-balance
- pp = basebet*(lc1*(co-1))
- if lc2>=increasebetEveryLosts or chance < 5 then
- lvl += 1
- nextbet*=increasebetBy
- cco = ((negs+pp)/nextbet)+1
- lc2 = 0
- else
- cco+=co
- end
- chance = (1/cco)*99
- end
- if chance < 5 then
- chance = 5
- nextbet = previousbet * 1.065
- end
- if lvl > lvl2 then lvl2 = lvl end
- if currentstreak < maxstreak then stopwin = true end
- if balance > target then stop() end
- print("\n\n")
- print("count "..lc2.."/"..increasebetEveryLosts)
- print("level "..lvl.."/"..lvl2)
- print("bet "..nextbet)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement