Untitled

 avatar
unknown
plain_text
2 years ago
607 B
4
Indexable
basebet   = 0 
bett = balance/15000
nextbet   = basebet  
chance    = 83.50
bal=balance
winns=0
losss=0
   
function dobet()  
    if win then  
        nextbet = basebet  
        chance  = 83.50
        winns=winns+1
        if winns%1000==0 then
        bethigh=!bethigh
        end
    else  
        losss=losss+1
        if losss==19 then
        nextbet = bett
        end
        chance  = 83.50
        nextbet = previousbet*6.40
        if (currentstreak==(-7)) then  
                 nextbet = bett 
        end
        if(profit>bal*0.05) then
        stop()
        end
        end
       
end
Editor is loading...