0% found this document useful (0 votes)
36 views2 pages

Designed-Noloss Dicebot

Uploaded by

healthwshop
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
0% found this document useful (0 votes)
36 views2 pages

Designed-Noloss Dicebot

Uploaded by

healthwshop
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

chance=49.

5
base=0.00009
nextbet=base
profittarget=0
bethigh = true
low = 0
high = 0
--scenarioswitch=1
betcount=1
function dobet()

if (lastBet.roll < chance) then


low += 1
end
if (lastBet.roll > (100 - chance)) then
high += 1
end

if betcount == 10000 then


betcount=1
resetseed();
else
betcount=betcount+1
end
if (win) then
if (high > low) then
bethigh = true
else
bethigh = false
end
if (profittarget<=0) then
profittarget=0
if previousbet<=base then
nextbet=base
end
if previousbet==0.00018 then
nextbet=base
end
if previousbet==0.00045 then
nextbet=0.00018
end
if previousbet==0.00072 then
nextbet=0.00045
end
if previousbet==0.00117 then
nextbet=0.00072
end
if previousbet==0.00189 then
nextbet=0.00117
end

if previousbet>=0.001 then
nextbet=base
end
end
if (profittarget>0) then
profittarget=profittarget-currentprofit
if (profittarget<(balance * 0.1)) then
nextbet=profittarget+base
end
if (profittarget>(balance * 0.1)) then
nextbet=profittarget/10
--profittarget=0
end
end
end

if(!win) then
if (profittarget<=0) then
profittarget=0
if previousbet<base then
nextbet=base
end
if previousbet==base then
nextbet=base*2
end

if previousbet==base*2 then
nextbet=base*5
end
if previousbet==base*5 then
nextbet=base*8
end
if previousbet==base*8 then
nextbet=base*13
end
if previousbet==base * 13 then
nextbet=base*21
end
if previousbet==base*21 then
--scenarioswitch=2
profittarget=base*67
nextbet=base
end
end
if (profittarget>0) then
nextbet=base
profittarget=profittarget-currentprofit
end
end
end

You might also like