Dicebot Script A

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

chance = 90 ---> Main Chance

bethigh = true
basebet = 9 ---> Basebet
nextbet = basebet

resetstats()
resetseed()

lroll = 0
groll = 0
function hilo()
if (lastBet.roll < 20) then
lroll = lastBet.roll
print(" ")
print(" Less than 20: " ..lroll)
print(" Switch Low ")
print(" ")
bethigh = false
end

if (lastBet.roll > 80) then


groll = lastBet.roll
print(" ")
print(" Greater than 80: " ..groll)
print(" Switch High ")
print(" ")
bethigh = true
end
end

function dobet()
if (win) then
chance = 90.00
nextbet = basebet
else
hilo()
if chance == 20 then
nextbet = previousbet * 1.2531645569620253
else
resetseed(); ---> Resets seed
chance = 20
nextbet = basebet/3 ---> Decreased bet for 5x payout

end
end
end

You might also like