SuperStaker DiceBot Script
SuperStaker DiceBot Script
com
-- This script is more for wagering a lot so you can get bonuses, rakeback, and
level up to VIP
-- than it is for profit. It does make a bit though ;)
-- Start with most of your balance in the Vault when you bust, double up and start
it again -
-- Works best at Stake, get instant Rakeback enabled on every roll you make when
you
-- signup with this link https://stake.com/?c=061a1c2ff3
-- and send Rakeback code "BitcoinWizards" to live chat support.
-- Cheers! Like and sub for more
-- Doge Donations: DPjRpaDLEeaDuFBersgtqYj8DTUmb5jP3C
-- Paste everything into the programmer tab of dicebot and hit start!
div = 0.00005
chance = 82.25
basebet = balance * div
nextbet = basebet
rcm = 0
count = 0
enablescr = 0
wag = 0
oldb = balance
resetstats()
function dobet()
wag += previousbet
print("======================================================================")
print("")
print("")
print("Balance: "..string.format("%.8f", balance))
print("")
print("Profit: "..string.format("%.8f", profit))
print("")
print("Wager: "..string.format("%.8f", wag))
print("")
print("Bet count: "..bets)
print("")
print("Current Chance: "..chance)
print("")
print("")
print("======================================================================")
if wag > oldb*100 then
stop()
end
if win then
if rcm <= 0 then
lastprofit = profit
end
if balance > oldb then
nextbet = basebet
chance = 82.25
bethigh = !bethigh
rcm = 0
count += 1
end
if count >= 50 then
resetseed()
count = 0
end
end
if not win then
bethigh = !bethigh
chance = 65.75
nextbet = previousbet*1.23
rcm = 1
end
end