One more profitable Dice script (LUA) for dicebot.
basebet = 0.0000027
chance = math. random (90, 90 )
enablezz = true
enablesrc = true
nextbet = basebet
function dobet()
if balance >0.02750 then
stop()
end
if profit > 0 then
resetstats()
nextbet = basebet
chance = math. random (90, 90 )
end
if currentstreak < 0 and profit < 0.0000000001 then
nextbet = basebet
chance = math. random (90, 90 )
end
if currentstreak > 0 and profit < 0.0000000001 then
nextbet = (-1*profit)* losses
chance = math. random (90, 90 )
end
if currentstreak > 1 and profit < 0.0000000001 then
nextbet = basebet
chance = math. random (90, 90 )
end
if nextbet < basebet then
nextbet = basebet
end
-- Stop loss at 10% of the total balance.
if balance <= (balance + profit) * 0.9 then
stop()
end
end
Your feed back matters us.