50% found this document useful (2 votes)
767 views2 pages

SuperStaker DiceBot Script

This script is meant for high-volume wagering on dice games to earn bonuses and level up VIP status, rather than focusing on profits. It doubles bets after losses and resets to the original bet size after wins, maintaining around an 82% chance of winning while the balance increases compared to the original amount. Signing up through the provided link offers rakeback benefits when using this script.

Uploaded by

lefi
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
50% found this document useful (2 votes)
767 views2 pages

SuperStaker DiceBot Script

This script is meant for high-volume wagering on dice games to earn bonuses and level up VIP status, rather than focusing on profits. It doubles bets after losses and resets to the original bet size after wins, maintaining around an 82% chance of winning while the balance increases compared to the original amount. Signing up through the provided link offers rakeback benefits when using this script.

Uploaded by

lefi
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

-- The Super Staker Script from FingGambling.

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()

if nextbet >=0.1 then


stop();
end

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

You might also like