-- Multipliers
---- SETTINGS ----
base = 0.00000001 -- base bet
minchance = 1 -- min chance
maxchance = 98 -- max chance
lossStreak = 2 -- loss streak
lossMultiplier = 2 -- loss multiplier
winStreak = 2 -- win streak
winMultiplier = 2 -- win multiplier
setlowhigh = 0 -- 0-low, 1-high, 2-random, 3-random on win, 4-random on profit +
profitTarget = 1.00000000 -- target profit
balanceTarget = 1.00000000 -- target balance
------------------
if setlowhigh == 0 then
bethigh=false
end
if setlowhigh == 1 then
bethigh=true
end
if setlowhigh == 2 then
r=math.random(1,2)
if r == 1 then
bethigh=true
else
bethigh=false
end
end
if setlowhigh == 3 then
r=math.random(1,2)
if r == 1 then
bethigh=true
else
bethigh=false
end
end
if setlowhigh == 4 then
r=math.random(1,2)
if r == 1 then
bethigh=true
else
bethigh=false
end
end
roundWins = 0
roundLosses = 0
lastbalance=balance
nextbet = base
chance=(math.random(minchance*100.00,maxchance*100.00)/100.00)
function dobet()
if (profit) >= profitTarget then
stop()
end
if (balance) >= balanceTarget then
stop()
end
if (balance) < (nextbet) then
stop()
end
chance=(math.random(minchance*100.00,maxchance*100.00)/100.00)
if setlowhigh == 0 then
bethigh=false
end
if setlowhigh == 1 then
bethigh=true
end
if setlowhigh == 2 then
r=math.random(1,2)
if r == 1 then
bethigh=true
else
bethigh=false
end
end
if (win) then
if setlowhigh == 3 then
r=math.random(1,2)
if r == 1 then
bethigh=true
else
bethigh=false
end
end
end
if balance >= lastbalance then
lastbalance = balance
if setlowhigh == 4 then
r=math.random(1,2)
if r == 1 then
bethigh=true
else
bethigh=false
end
end
roundWins = 0
roundLosses = 0
nextbet = base
else
if (win) then
roundWins += 1
if (roundWins % winStreak == 0) then
nextbet *= winMultiplier
end
else
roundLosses += 1
if (roundLosses % lossStreak == 0) then
nextbet *= lossMultiplier
end
end
if nextbet < base then
nextbet = base
end
end
end
0 Comments