Dopeshot's dope dicebot script.
-----the backfire---
chance = 10.5
base = 0.0000000055
nextbet = base
losecount = 0
target = balance + balance/5
rs = 0
function dobet()
if balance > target then stop() end
if(math.random(1,2) == 1) then
bethigh = !bethigh
print "bet high/low switch"
end
if rs>=11 then
resetseed()
rs = 0
print "seed reset"
end
if win then
rs+=2
nextbet = base
chance = 10.5
losecount = 0
else
nextbet = previousbet*1.36
losecount+=1
rs+=0.5
end
print(rs)
print(losecount)
if (losecount >= 1) then
nextbet = previousbet*1.38
chance = 7.5
end
if ( losecount >= 3) then
nextbet = previousbet*1.42
chance = 9.2
end
if (losecount >= 5) then
nextbet = previousbet*1.4
chance = 8.5
end
if ( losecount >= 7) then
nextbet = previousbet*1.44
chance = 13.5
end
if (losecount >= 9) then
nextbet = previousbet*1.44
chance = 11.2
end
if (losecount >= 11) then
nextbet = previousbet*1.8
chance = 21.5
rs+=0.5
end
if ( losecount >= 13) then
nextbet = previousbet*1.95
chance = 24.5
end
if ( losecount >= 14) then
nextbet = previousbet*1.44
chance = 12.5
end
if ( losecount >= 16) then
nextbet = previousbet*1.48
chance = 14.4
end
if ( losecount >= 19) then
nextbet = previousbet*1.52
chance = 15.5
end
if ( losecount >= 22) then
nextbet = previousbet*1.78
chance = 19.5
end
if ( losecount >= 25) then
nextbet = previousbet*1.78
chance = 23.5
end
if ( losecount >= 28) then
nextbet = previousbet*1.84
chance = 28.5
end
if ( losecount >= 30) then
nextbet = previousbet*1.94
chance = 31.5
end
if ( losecount >= 31) then
nextbet = previousbet*1.98
chance = 35.5
end
if (losecount >= 33) then
nextbet = previousbet*2.15
chance = 39.5
end
if (losecount >= 34) then
nextbet = previousbet*2.75
chance = 47.5
end
if (losecount >= 35) then
nextbet = previousbet*3.15
chance = 57.5
end
end
end
**Dicebot scripts are potentially able to cost your entire balance very quickly. Use at your own risk.