Ad Code

Responsive Advertisement

1.2x and 4.95x Mix Script

 resetseed();
chance       = 80
bethigh      = false
losses       = 0
bets         = 0
StopOnLoss   = -0.01000000
Increase     = 1.05000
basebet      = 0.00001
nextbet      = basebet
roundprofit = 0.00001
round       = 0
function dobet() 
    losses+=1 
    bets+=1 
    round = round + currentprofit
    if ( profit < StopOnLoss ) then 
        stop() 
        alarm() 
    end
 
    if (round > roundprofit) then 
         bets    = 0
         round   = 0
         nextbet = basebet
         resetseed(); 
    end 
    if (win) then 
        chance  = 20
        bethigh = !bethigh 
    else
        if (losses > 1) then 
             chance  = 80
             bethigh = !bethigh  
        end   
end
if (bets > 1) then 
       nextbet = previousbet*Increase
    end   
end

Post a Comment

0 Comments