New Code For Luxk
New Code For Luxk
nextbet = basebet
chance = 49
w = 0
luck = 0
counter = 0
up = 0
down = 0
upluck = 0
downluck = 0
down1 = 0
up1 = 0
upluck1 = 0
downluck = 0
function dobet()
counter += 1
upluck = ((down/counter)*100)/49*100
downluck = ((up/counter)*100)/49*100
upluck1 = ((down1/counter)*100)/33*100
downluck1 = ((up1/counter)*100)/33*100
end
--posting
print("upluck :"..string.format("%.8f",upluck))
print("downluck :"..string.format("%.8f",downluck))
print("upluck1 :"..string.format("%.8f",upluck1))
print("downluck1 :"..string.format("%.8f",downluck1))
--win and loss settings
if win then
chance = 49
nextbet = basebet
if upluck > 100 then
bethigh = true
elseif downluck > 100 then
bethigh = false
end
else
if (chance == 49) then
nextbet = previousbet*2.2
elseif (chance == 33) then
nextbet = previousbet*1.55
end
end
end