Dicebot Recovery Script
Dicebot Recovery Script
chance = mainChance
basebet = 0.00000100
nextbet = basebet
bethigh = true
losecount = 0
counter = 0
profittarget = 3.00000000
resetstats()
resetseed()
function dobet()
counter+=1
if counter >= 250 then
resetseed()
counter = 0
end
if (win) then
chance = mainChance
nextbet = basebet
losecount = 0
end
if (!win) then
losecount += 1
if (losecount > 1) then
nextbet = previousbet*1.12
chance = (1/(((nextbet+(nextbet-basebet))/previousbet)))*20
if chance < 9.0 then
chance = 9.0 end
bethigh = !bethigh
print ("LOSE")
print(nextbet)
print(chance)
print(profit)
print(bets)
else
nextbet = previousbet*1.12
chance = (1/(((basebet+nextbet))/nextbet))*25
if chance<9.0 then
chance = 9.0 end
bethigh = !bethigh
print ("LOSE")
print(nextbet)
print(chance)
print(profit)
print(bets)
end
end
end