You are on page 1of 1

Betset Run 24 jam (by pjm)

chance=90
multiplier=1.1
multiplier2=2.5
base=0.0000225
nextbet = base
bethigh = false
target = .0005
investtarget = .1
tmpprofit = 0
investprofit = 0
wincount = 3

stopnow = false

function dobet()

tmpprofit += currentprofit
investprofit += currentprofit

if win then
print("We Won")
if (tmpprofit > target) then
tmpprofit = 0
nextbet = base
if(stopnow) then stop() end
if(investprofit > investtarget ) then
investprofit = 0
invest(investtarget)
end
else
print("Since we Won we are now times our last bet by multiplier 2")
nextbet=previousbet*multiplier2
if(nextbet < base) then
nextbet = base end
end
else
print("we lost so we are timzing by multiplier 1")
nextbet=previousbet*multiplier
if(nextbet < base) then
nextbet = base end
end
end

You might also like